views:

185

answers:

1

hi my dear friends

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 pages (inside multiviews)... best regards

A: 

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 %>");
Dror