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 have a grid thats pretty wide. I have 20 columns - some of which may sum to 0. If they have no values if like to hide them to make the grid easier to read. Is there such a way to do this?
TSThiyagu Subramani Syncfusion Team June 8, 2020 02:49 PM UTC
Hi Rich,
By default we have an option for visible to achieve your requirement. Here we have hided EmployeeID (value as 0) column using QueryCellInfo event. Please refer to the below code and sample link.
var flag = true;
functionqueryCellInfo(args) {
debugger;
var gridObj = document.getElementsByClassName('e-grid')[0].ej2_instances[0];