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

editing child Radgrid in Template column

1 Answer 30 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
NVB
Top achievements
Rank 1
NVB asked on 20 Oct 2012, 03:56 PM
I have a Radgrid in one of the columns of main Radgrid.

Display of rows is working fine.

I need to open all the rows of child radgrid when I click the edit on main row.

How do I do this?

Thanks
  

1 Answer, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 21 Oct 2012, 05:11 PM
Hello,

protected void Page_PreRender(object sender, EventArgs e)
       {
           foreach (GridEditableItem item in RadGrid1.EditItems)
           {
               item.Expanded = true;
           }
       }


Thanks,
Jayesh Goyani
Tags
General Discussions
Asked by
NVB
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Share this question
or