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 GridGroupingControl and I am wondering what mechanism to use in GGC to implement these requirements:
At run time, user can select any column in display and decides to do one of the following:
- Set all values in a column the same
- Increment the values in a column
- Define a formula and apply it to an entire column or to a selection of cells within a column.
Thanks,
Nancy
ADAdministrator Syncfusion Team July 27, 2005 05:33 PM UTC
You will have to loop through the grid.Table.Records collection (or the grid.Tables.FilteredRecords collection to do the work on only the visible records from your datasource as opposed to all records in your datasource). For each record in the collection, you would use record.GetValue and record.SetValue to do whatever you want to do.