How do I fix the size of the grouping grid drop area?

I want to fix the size of the grouping grid drop area, so the user can not resize it.

2 Replies

AD Administrator Syncfusion Team August 14, 2006 11:53 AM UTC

Hi David,

Please try this code snippet to resolve this.

int DefaultHeight = 100;
//Form Load
this.grid.GroupDropPanel.Height = DefaultHeight;
this.grid.GroupDropPanel.SizeChanged +=new EventHandler(GroupDropPanel_SizeChanged);

private void GroupDropPanel_SizeChanged(object sender, EventArgs e)
{
this.gridGroupingControl1.GroupDropPanel.Height = DefaultHeight;
}

Let me know if this helps.
Best Regards,
Haneef


DV David Vanstone August 14, 2006 12:47 PM UTC

Thanks works a treat

Loader.
Up arrow icon