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

set_enabled not working.

1 Answer 195 Views
Input
This is a migrated thread and some comments may be shown as answers.
Senthil
Top achievements
Rank 1
Senthil asked on 15 Nov 2013, 11:50 AM
There is a radtextbox which is initially disabled and I am trying to enable it from js like below
radtextbox.set_enabled(true) but the textbox is not enabled.Any idea?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 15 Nov 2013, 12:14 PM
Hi Senthil,

The enable method is used to enable a RadTextBox from client side. Please try the following code.

JavaScript:
var radtextbox = $find('<%=RadTextBox1.ClientID %>');
radtextbox.enable();

Thanks,
Shinu.
Tags
Input
Asked by
Senthil
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or