Reshow zero-width column in GDBG

Hello, Can you please give ideas on how to redisplay a column through UI interactiion (i.e. mouse click / drag / key press etc) after a user resize it to zero-width in GDBG? The library that we are using is version 2.0.5.1 Thanks in advance for your help

1 Reply

AD Administrator Syncfusion Team January 12, 2005 03:58 PM UTC

You can try handling the ResizingColumns event, and if it is a double click, show the column. private void gridDataBoundGrid1_ResizingColumns(object sender, GridResizingColumnsEventArgs e) { if(e.Reason == GridResizeCellsReason.DoubleClick ) { this.gridDataBoundGrid1.Model.Cols.Hidden[e.Columns.Right + 1] = false; } }

Loader.
Up arrow icon