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

Multi level hierachy height issues

1 Answer 93 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Jon
Top achievements
Rank 1
Jon asked on 05 Oct 2010, 09:50 AM
Hi,

I have a gridview with 5 child levels under the main level,  as they expand the height of the last levels do not size properly.  The result is that the content does not always show as it gets cut off within the parent box.  Is this a known issue?

I'm on the latest SP of Q2 2010 and am using the Office Black theme

Regards,

Jon

1 Answer, 1 is accepted

Sort by
0
Alexander
Telerik team
answered on 07 Oct 2010, 05:41 PM
Hello Jon,

Thank you for your question.

Yes, it is a known issue. The size of the child views is correct if up to four levels of hierarchy are used. We will try to improve it in a next release.

The height of the child views is calculated automatically when the control does not use scrollbars in the child views. If you decide to show the scrollbars, you can define the height of the child views using the ChildViewExpanded event of RadGridView:

this.radGridView1.UseScrollbarsInHierarchy = true;
  
private void radGridView1_ChildViewExpanded(object sender, ChildViewExpandedEventArgs e)
{
    e.ChildRow.Height = 200;
}

I hope it helps.

Best regards,
Alexander
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
GridView
Asked by
Jon
Top achievements
Rank 1
Answers by
Alexander
Telerik team
Share this question
or