This question is locked. New answers and comments are not allowed.
Hi,
I need a way to react to numeric text box value change client side but I can't use.
.ClientEvents(events => events.OnChange("changeHandler"))
since the control is in an editor template that will produce multiple instances that should have (or not) different handler.
I would like to do that in java script using something like:
$(#number).data("tTextBox").changed(function() { ... })
Is client side changed event subscription supported and if so how can I make it happen (any workarounds)?
I need a way to react to numeric text box value change client side but I can't use.
.ClientEvents(events => events.OnChange("changeHandler"))
since the control is in an editor template that will produce multiple instances that should have (or not) different handler.
I would like to do that in java script using something like:
$(#number).data("tTextBox").changed(function() { ... })
Is client side changed event subscription supported and if so how can I make it happen (any workarounds)?