cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Multiple value selection in iGrid

Former Member
0 Kudos
190

Hi,

How can i retrieve values in iGrid when multiple rows are selected?

Thanks in advance

Regards,

Murali

View Entire Topic
Former Member
0 Kudos

Murali,

Make sure your grid has the "Allow Multiple Selection" parameter turned on. Using JavaScript , you would need to getSelectedRowCount. It will be used as the limit in a for loop. You will also use these lines... myGrid.getCellValue(myGrid.getSelectedRowAt(intCount,2)); My example is used for a button click calling the function and then alerting a few values in the selected rows. You will need to do some research once you get the values. The Script Assistant and the Help will guide you through the different methods you can use. Good luck.

Regards,

Kevin