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.
Hi,
I have a GridGroupingControl and one of the column in the grid is a checkbox. How do i get three states in the check box(checked, unchecked, indeterminate). I tried to set the indetermvalue = 2 in the querystyleinfo and that didn''t work. My syncfusion version 2.0.5.1
Thanks
ADAdministrator Syncfusion Team March 11, 2005 10:23 PM UTC
You should try setting the style.TriState property for that column.
GridStyleInfo style = this.gridGroupingControl1.TableDescriptor.Columns["boolCol"].Appearance.AnyRecordFieldCell;
style.TriState = true;
style.CellType = "CheckBox";