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''m sure that I''m just missing some obvious style, but I can''t seem to find it. How do we set the hilight color for selected cells (or, in my case, whole rows)in the GridGroupingControl?
Thanks,
Dan
ADAdministrator Syncfusion Team December 4, 2004 05:30 PM
If you are using 2.1.0.9, try setting
this.gridGroupingControl1.TableModel.Options.AlphaBlendSelectionColor = Color.Red;
ADAdministrator Syncfusion Team December 4, 2004 08:12 PM
Thanks. Will that change in 3.0?
ADAdministrator Syncfusion Team December 4, 2004 08:19 PM
Hmmm. I doesn''t seem to have any effect (I''m in 2.1.0.61)...
ADAdministrator Syncfusion Team December 5, 2004 03:57 AM
Do you have the AlphaBlend flag set in the this.gridGroupingControl1.TableOptions.AllowSelection property? If not, the 2.1.x.x code justs tries to invert the selection.
The 3.0 code does a have new row selection implementation which does give you more control over colors and currentcell behavior in the the selected records. This 3.0 sample illustrates its usage. Syncfusion\Essential Suite\3.0.0.19\Windows\Grid.Windows\Samples\Grouping\MultipleRecordSelection
ADAdministrator Syncfusion Team December 5, 2004 03:04 PM
Thank you.
Since it''s different, I''ll just wait till 3.0 before touching that part.