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

[Solved] Is there such a thing as a server side rowselect?

1 Answer 58 Views
Grid
This is a migrated thread and some comments may be shown as answers.
bo
Top achievements
Rank 1
bo asked on 25 Jun 2009, 05:19 PM
Is there such a thing as a server side rowselect?

I've got 2 radgrids.  When I select a ROW (not a button) on the lefthand grid I want to change what is displayed in the righthand grid.

How?

1 Answer, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 25 Jun 2009, 07:50 PM
Hello Bo,

I recommend you examine our Master/Detail Grids online demo.
Master/Detail Grids online demo

A possible approach to attain a server-side selection without buttons/checkboxes is to set the EnablePostBackOnRowClick property and select the row manually on ItemCommand.

Example:
<ClientSettings EnablePostBackOnRowClick="true" /> 

protected void RadGrid1_ItemCommand(object source, GridCommandEventArgs e) 
    if (e.CommandName == "RowClick"
        e.Item.Selected = true

Best regards,
Daniel
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Grid
Asked by
bo
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Share this question
or