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
2165
How to prevent igcomboselectionchanged to be fired.
posted

I want to know when users has changed some data in the form, for example when a combo has changed its value, so I do this:

$(function () {
   $(document).delegate("#StyleKey", "igcomboselectionchanged", function (evt, ui) {
      document.getElementById("FormDataHasChanged").value = true;
   });
}

But this is fired even when user hasn't change the combo value. How to prevent this event to be fired until everything is loaded?