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

Enabling/Disabling a RadComboBox on the Client-Side?

1 Answer 1827 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
BC
Top achievements
Rank 1
BC asked on 21 Aug 2008, 08:49 PM
How do you enable or disable a RadComboBox using a JavaScript function on the client side?

1 Answer, 1 is accepted

Sort by
0
Rosi
Telerik team
answered on 22 Aug 2008, 07:26 AM
Hello BC,

You can use the enable() and disable() client-side methods of RadComboBox.

For example:
function DisableComboBox()  
{  
 var combo = $find("<%= RadComboBox1.ClientID %>");  
 combo.disable();  
}  

More about Client-Side API of RadComboBox you can find here.


All the best,
Rosi
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
ComboBox
Asked by
BC
Top achievements
Rank 1
Answers by
Rosi
Telerik team
Share this question
or