I want to select multiple rows on Janus GridEX, but selectedItems property cannot be assigned and it's read only. however I can select a specific row by GridEX.Row and set the current selected row, but I cant add a row or any thing like that to select multiple row!
Can anyone help me
Thanks alot, Shahin
First make sure that your grid allows selecting multiple rows. This can either be set in the designer or in code.
Now to select rows, use SelectedItems.Add(position) where position is the index of the row in the grid.