delPiero
2014-04-07T01:16:51Z
Hello,
I would like to know whats the easiest way to display all the selected items..
delPiero
2014-04-07T03:41:26Z
is there an easier way of doing this?

iGridListView.SelectedRows.Grid.Cells(lstiGridOpen.SelectedRows.Item(0).Index, 7).Value = "Text"
Igor/10Tec
2014-04-07T14:14:07Z
Originally Posted by: delPiero 

Hello,
I would like to know whats the easiest way to display all the selected items..



You need to enumerate the iGrid.SelectedRows or iGrid.SelectedCells collection depending on the selection mode (rows/cells) you use.
delPiero
2014-04-07T14:16:53Z
okay, how do I do that?
Igor/10Tec
2014-04-07T14:17:38Z
Originally Posted by: delPiero 

is there an easier way of doing this?

iGridListView.SelectedRows.Grid.Cells(lstiGridOpen.SelectedRows.Item(0).Index, 7).Value = "Text"



Do you need to set the new text for the selected cell? If so, then the CurCell property can help you:

iGridListView.CurCell.Value = "Text"

And your call 'iGridListView.SelectedRows.Grid.Cells' looks very strange...

Can you tell us what task you need to implement so we can advise a suitable code snippet or iGrid memebr?
delPiero
2014-04-07T14:27:43Z
I want to go through the selected rows and change the subItem(1).Text = "Done"
Igor/10Tec
2014-04-08T14:47:28Z
For Each selRow As iGRow In iGrid1.SelectedRows
   selRow.Cells(1).Value = "Done"
Next