I am using a Janus Gridview in which I am having 3 columns that is "Key", "Value" and selection(checkbox). I want to retrieve "Key" and "value" data for each selected rows that is against checked checkbox.
Asked
Active
Viewed 1,238 times
0
-
share the source code – ddb Jul 11 '16 at 07:29
-
Which language are you using Janus GridEx with? (VB6, etc.) – jameswilddev Jul 19 '16 at 12:16
-
I am using c#. I got the solution. I am iterating like this for (int i = 0; i < summaryFinalGridEX.RowCount; i++) { bool res = false; res = summaryFinalGridEX.GetRow(i).IsChecked; //finding if a row is checked or not. if (res == true) { var temp = summaryFinalGridEX.GetRow(i); //gives checked row – Saurav Shashank Jul 22 '16 at 06:59