You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use custom inputs widgets like DatePicker or NumericTextBox (KendoUI).
I would like to use "value" binding but I have to create my custom handler with addHandler.
Is it possible ?
Thank you
The text was updated successfully, but these errors were encountered:
Seems like that's exactly what custom handlers are intended for - creating binding interactions that aren't "standard". I've done exactly that myself with some jQuery plugins, like this one for jQuery-Knob:
// Gets/sets the value for a $.knob() element
knobValue : {set : function($element,value){// Note that this does NOT appear to retrigger the knob's "change" handler, and// therefore we don't get into an infinite loop$element.val(value).trigger("change");},get: function($element,value,event){return$element.val();}}
Hi,
I use custom inputs widgets like DatePicker or NumericTextBox (KendoUI).
I would like to use "value" binding but I have to create my custom handler with addHandler.
Is it possible ?
Thank you
The text was updated successfully, but these errors were encountered: