how can i fire telerik rad combo box selectedindexchange event With Jquery... My Pages Base on Master And Content Pages And In Content Pages I have multiviews And inside Multiviews I have RadComboBoxes
i had some problem about getting controls in content p开发者_开发百科ages (inside multiviews)... best regards
If you have the ClientID of the control - use it as a jquery selector.
Instead of using it in Telerik style selector:
var telerikCombo = $find("<%= RadComboBox1.ClientID %>");
Use it as a jQuery selector:
var jqueryCombo = $("#<%= RadComboBox1.ClientID %>");
精彩评论