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
1845
Event Handling
posted

Just in case anyone else is trying to handle events on this control, and was having a hard time with the lack of examples / misleading documentation, here's the way to do it:

$('#yourID').bind('igcurrencyeditorvaluechanged', function(){

alert('This fires when the value is changed');

}

All of the events are listed at the link below.  However, they don't work as listed, you'll have to prepend them with "igcurrencyeditor" as I've done above.

http://www.igniteui.com/help/api/2015.2/ui.igcurrencyeditor

Hope this helps some people out.  Infragistics, update your docs!