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.
How to get range of rowindex when we select multiple rows of gridgrouping control
If you became a customer of the Syncfusion Reporting Platform or the Report Viewer, Report Designer, or Report Writer components before October 2019 and have questions related to those products, you can request support through our forum system. However, please note that this support system is only for existing customers who are still using the Syncfusion Reporting Platform or its components and not for new customers looking for reporting products from Syncfusion.
For new customers or those with general reporting questions, we recommend contacting our support team at https://support.boldreports.com/, which is a separate brand created by Syncfusion for its reporting solutions. Our team will be happy to assist you with any questions you may have.
Thank you for choosing Syncfusion for your reporting needs.
How to get range of rowindex when we select multiple rows of gridgrouping control
MSManiratheenam Sehar Syncfusion Team November 3, 2014 04:47 AM UTC
Hi Rasika,
Thank you for using Syncfusion products.
Query:
How to get range of
rowindex when we select multiple rows of gridgrouping control
Use the Model.Selections property to manages selected
ranges in the grid. It allows you to add, remove and get selections,
determines selection state of a specific cell.
//Get the selected rows from the groupin grid.
GridRangeInfoList range = this.gridGroupingControl1.TableModel.Selections.GetSelectedRows(true,true);
foreach( GridRangeInfo info in range)
{
Element el =
this.gridGroupingControl1.TableModel.GetDisplayElementAt(info.Top);