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

RadGrid client-side selection question...

1 Answer 50 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Anthony
Top achievements
Rank 1
Anthony asked on 21 Jul 2008, 06:22 PM
Is it possible to have the client-side selection of a RadGrid row change the Enabled property of an ASP LinkButton elsewhere on the page?

1 Answer, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 22 Jul 2008, 05:15 AM
Hi Anthony,

You can use OnRowSelected client-side event to achieve this. Here is an examle:

function RadGrid1_RowSelected(sender, args)
{
    var myLinkButton = $get("YourLinkButtonClientID");
    myLinkButton.disabled = !myLinkButton.disabled;
}

Greetings,
Vlad
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Grid
Asked by
Anthony
Top achievements
Rank 1
Answers by
Vlad
Telerik team
Share this question
or