The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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
ADAdministrator 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;
}
}