Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
990
igNumericEditor does not raise the ignumericeditorvalueChanged event
posted

I add a delegate for my igNumericEditor using the following code:

$(document).delegate("#TimeframeModel-NumberOfDays""ignumericeditorvalueChanged"function (evt, ui) {
    alert("Value changed");
});

However, the event is never raised.  What am i doing wrong?

-wvusaf

Parents
  • 25665
    Verified Answer
    Offline posted

    Hello Rob,

    Thank you for contacting Infragistics!

    First depending on the version of jQuery you are using delegate may be superseded and you should be using on instead:

    http://api.jquery.com/delegate/

    http://api.jquery.com/on/

    In addition to this the API appears to have a typo the event name should all be lower case for example:

    $("#numericEditor").on("ignumericeditortextchanged", function(evt, ui) {
    alert(“Value Changed”);
    });

Reply Children
No Data