Grid docking problem

Hi,

I have an issue with docking the grid. If i drop GridControl (DockStyle=Fill) on the Form (or SplitContainer) and a GradientPanel (DockStyle=Bottom), the GradientPanel overlays records in the grid so not all of them can be seen. There is no scrollbar also.

Scrollbar seems to apper if I change the Form size or change the SplitterDistance.

How can I made the Grid not to be overlayed by the GradientPanel?

Regards,
Marek Solarski


GridDocking.zip

1 Reply

AD Administrator Syncfusion Team September 21, 2006 10:45 AM UTC

Hi Grid,

Try calling the Grid.BringToFront method to bring the grid control to the front of the Z- order in the form.

//Form load event.
this.grid.BringToFront();

Regards,
Haneef

Loader.
Up arrow icon