Is it possible to use JQuery to select and modify properties on Telerik ASP.NET Ajax controls?
For example, I have the follow code which works fine to disable the ASP.NET textboxes on a particular form, but does not touch the RadComboBoxes or the RadDatePickers, even though they have the appropriate class.
$(".datafield").attr("disabled", "disabled");
Is there any way, or do I have to select the Telerik controls one by one with Javascript, per the samples in help?:
For example, I have the follow code which works fine to disable the ASP.NET textboxes on a particular form, but does not touch the RadComboBoxes or the RadDatePickers, even though they have the appropriate class.
$(".datafield").attr("disabled", "disabled");
var combo = $find("<%= RadComboBox1.ClientID %>"); combo.disable();
var picker = $find("<%= RadDatePicker1.ClientID %>"); picker.set_enabled(false);