Hello!
In the demos you are talking about client-side event registration, but the only event named there is valueChange. What are the names of the other events? I can't seem to find them in the docs or anywhere else really.
2 Answers, 1 is accepted
0
Georgi Krustev
Telerik team
answered on 22 Aug 2011, 09:06 AM
Hello Stefan,
Here is a list of the events which you can bind manually on the client:
dataBinding, //DataBinding event handler
dataBound, //DataBound event handler
error, //Error event handler
open, //Open event handler
close, //Close event handler
valueChange, //Change event handler
load, //Load event handler
To bind them use the following code snippet:
$("#ComboBoxID").bind("event-name", handler);
Regards,
Georgi Krustev
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward!
We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>
The code :
$("#ComboBoxID").bind("event-name", handler); works perfectly.
But when jquery event 'live' is used i.e. $("#ComboBoxID").live("event-name", handler);
the handler does not work.
jquery '.live' event was not supporting custom events in its earlier versions , So i tried with Jquery 1.7.1 and it still does not work
I have tried the new event ".on ", the handler still doesn’t work.
I want to be able use .live/ .on jquery events for telerik 'valueChange' event appreciate suggestions