Making the last column width bigger

It doesn't seem to be possible for a user to resize the last (rightmost) column to any size they want, as it won't let you resize the cell wider than the scroll bar at the bottom.

In excel you can re-click right on the scroll bar and it gives you some more "grey background" to resize the column into, but syncfusion grid doesn't seem to do this.

Is there any way of making this work in the grid?

Cheers
Steve

1 Reply

HA haneefm Syncfusion Team April 18, 2007 05:29 PM UTC

Hi Steve,

If you want to allow the user to drag the mouse outside the grid client area and resize the specific row or column, you need to turn on the AllowDragOutside flag to the ResizeColsBehavior/ResizeRows Behavior property. Here is a code snippet.

this.grid.ResizeColsBehavior = GridResizeCellsBehavior.AllowDragOutside | GridResizeCellsBehavior.ResizeSingle;
this.grid.ResizeRowsBehavior = GridResizeCellsBehavior.AllowDragOutside | GridResizeCellsBehavior.ResizeSingle;

Best regards,
Haneef

Loader.
Up arrow icon