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

How to enable RadButton (on server side)

1 Answer 294 Views
Button
This is a migrated thread and some comments may be shown as answers.
Simon
Top achievements
Rank 1
Simon asked on 14 Oct 2015, 09:54 PM

I have a RadButton on an ASPX page and I am trying to enable a disabled button in the code behind page.

I have no problem enabling ​on ​the client side (via set_enabled method), is there a magic trick to doing it in C# on the server side?

 

Code is: 

void fileList_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
    btnSave.Enabled = true;
}

 

Thank you,

SM

1 Answer, 1 is accepted

Sort by
0
Simon
Top achievements
Rank 1
answered on 15 Oct 2015, 04:14 PM

Figured this out. Use telerik:RadAjaxManager to update UI based on changes made on server but up to that point ignored.

S

Tags
Button
Asked by
Simon
Top achievements
Rank 1
Answers by
Simon
Top achievements
Rank 1
Share this question
or