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

[Solved] RadGrid expand event

1 Answer 136 Views
Grid
This is a migrated thread and some comments may be shown as answers.
franchute
Top achievements
Rank 1
franchute asked on 20 Feb 2008, 01:06 PM
Hi guys,

Is there any way to manually throw the expand/collapse event from codebehind when having a herarchical grid with two levels ?

1 Answer, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 20 Feb 2008, 02:09 PM
Hello franchute,

You can use Expanded property of GridItem to achieve this:

        protected void Button1_Click(object sender, EventArgs e)
        {
            RadGrid1.Items[0].Expanded = true;
           
        }

Sincerely yours,
Vlad
the Telerik team

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