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

Multi Level Hierarchic Grid

1 Answer 84 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Alexandre
Top achievements
Rank 1
Alexandre asked on 03 Jul 2008, 12:22 PM
Hi everyone i'm triying to do a multi level hierarchic grid and well it works ... I have 3 level of grid but the size of the third level is too small I don't know why ... I can't see my rows on the third level..

Thanks for Your answers

Alexandre Samson

1 Answer, 1 is accepted

Sort by
0
Accepted
Jack
Telerik team
answered on 04 Jul 2008, 02:02 PM
Hello Alexandre,

Thank you for contacting us.

You can control the height of your child views through the ChildRowHeight property of your GridTableElement. It can be set when processing the RowFormatting event. Consider the code snippet below:

        void radGridView1_RowFormatting(object sender, RowFormattingEventArgs e) 
        { 
            GridDetailViewRowElement row = e.RowElement as GridDetailViewRowElement; 
            row.ContentCell.ChildTableElement.ChildRowHeight; 
        } 


If you need more detailed help, please open a support ticket and send us a sample application. This will help us find a concrete solution to your problem.

Should you have any other questions, do not hesitate to write me.

Kind regards,
Jack
the Telerik team

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