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 am using a GridControl. When I click in the header the entire column is hilighted in a blue color. How do I override this behavior so that clicking in the header does not change any grid colors?
Thanks
ADAdministrator Syncfusion Team August 9, 2004 03:25 PM UTC
In the AllowSelections property, try turning off the Row and Column flags to see if that does what you want.
SDSteven DomingueAugust 9, 2004 03:48 PM UTC
Thanks. That was a quick response. I used
AllowSelection = AllowSelection & (~GridSelectionFlags.Column);
and it seems to work as I would like.
>In the AllowSelections property, try turning off the Row and Column flags to see if that does what you want.