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.
I use a GDBG. The combo box cell in GDBG always trim the text when I load it.
How can I force the grid remove the space before and after the text in Combo box cell?
Thanks.
ADAdministrator Syncfusion Team February 4, 2005 01:02 PM UTC
Hi David,
try handling the grid.Model.QueryCellFormattedText event and use this code in your handler.
e.Text = e.Style.Text.Trim();
e.Handled = true;
Stefan