BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Chong,
Thank you for contacting Syncfusion Support.
We have analyzed your query. You can achieve your requirement by using GetSelectedCells() method in SfDataGrid. By using this method you can get the whole selected cell information.
Please refer the below code snippet and sample in the following location:
Code Snippet:
private void Button_Click(object sender, RoutedEventArgs e) { int rowindex =0; var selectedcels = this.sfdatagrid.GetSelectedCells(); int count = selectedcels.Count; for (int i = 0; i < count; i++) { rowindex = this.sfdatagrid.ResolveToRowIndex(selectedcels[i].RowData); var colindex = this.sfdatagrid.Columns.IndexOf(selectedcels[i].Column); var visibilecolindex = this.sfdatagrid.ResolveToGridVisibleColumnIndex(colindex); } } |
Regards,
Farjana Parveen A
Hi Chong,
Sorry about the inconvenience caused.
We have analyzed your query. Normally the filter pop up shows both checked and unchecked data on last filtered column where the filter has been applied and the remaining column shows only the visible data as checked state in filter pop up. It’s a behavior of filter in SfDataGrid.
Regards,
Farjana Parveen A