We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Column Resize

If you resize the row or column header to nothing, how does the user re-size it back?

1 Reply

AD Administrator Syncfusion Team April 12, 2004 08:35 PM UTC

In a GridControl, you can double click the column border to re-show a hidden column. In a GridDataBoundGrid, you can handle the ResizingCols event, and make a doubleclick resize things.
private void gridDataBoundGrid1_ResizingColumns(object sender, GridResizingColumnsEventArgs e)
{
	if(e.Reason == GridResizeCellsReason.DoubleClick)
	{
		this.gridDataBoundGrid1.Model.Cols.Hidden[e.Columns.Left+1] = false;
		e.Cancel = true;
	}
}

Loader.
Live Chat Icon For mobile
Up arrow icon