jQWidgets Forums

jQuery UI Widgets Forums Editors NumberInput NumberInput lostfocus

This topic contains 2 replies, has 2 voices, and was last updated by  Staale Eikebraaten 12 years, 6 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • NumberInput lostfocus #10898

    Staale Eikebraaten
    Participant

    Hi !

    Ive tried your NumberInput component, and the ValueChange event.. This is not the event Im looking for, as I want to post when the user exits the field, and update the database.. The valuechange Event fires everytime a key is pressed, an will not work for me..
    Any ideas ?

    Thanx

    -=Staale=-

    NumberInput lostfocus #10905

    Peter Stoev
    Keymaster

    Hi Staale Eikebraaten,

    You can try something like that after the jqxNumberInput’s initialization :

    $("#numberInput").find('input').on('blur', function(event)
    {
    });

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    NumberInput lostfocus #10936

    Staale Eikebraaten
    Participant

    Thanks for pointing me in the right direction…

    My end result is
    $(“#@rad.FagId”).find(‘input’).blur(function (event) {
    OppdaterFagMedTimer(‘@rad.FagId’);
    });

    Thank you.

    -=Staale=-

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.