This is a migrated thread and some comments may be shown as answers.

[Solved] jQuery Event Names

2 Answers 121 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Stefan
Top achievements
Rank 1
Stefan asked on 19 Aug 2011, 06:16 PM
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

Sort by
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 >>

0
srikanth
Top achievements
Rank 1
answered on 11 Jan 2012, 10:07 PM

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

Thanks
Srikanth

 

Tags
ComboBox
Asked by
Stefan
Top achievements
Rank 1
Answers by
Georgi Krustev
Telerik team
srikanth
Top achievements
Rank 1
Share this question
or