I need to enable/diable editor inside a tab based upon the checkbox in the same tab. How I recognise the checkbox and the editor controls. I try to use $find and receive error. Please advice
1 Answer, 1 is accepted
0
Atanas Korchev
Telerik team
answered on 25 Mar 2009, 01:40 PM
Hi Raymond,
You should be able to locate the editor control using the following syntax:
var editor = $find("<%= RadEditor1.ClientID %>");
To locate a checkbox you should use the $get routine as the checkbox element is not an ASP.NET Ajax control:
var checkBox = $get("<%= CheckBox1.ClientID %>");
Regards,
Albert
the Telerik team
Check out
Telerik Trainer
, the state of the art learning tool for Telerik products.