I created a new thread because the other one had a answered checkbox so I wasnt sure if it would get answered.
From the other thread - (http://forums.infragistics.com/forums/t/2165.aspx)
"You would need to have the DisplayLayout.SelectTypeRowDefault set to Extended. Then shift clicking or control clicking will select based on the normal patterns."
Is this the only property that needs set? I have tried to set this for my grid and it doesnt seem to work. Also when I double click my RowSelector it gives me a little dialogue next to it with a ok/cancel button, how do I turn that off?
The OK/Cancel button is probably a RowEditTemplate that was added to the Grid. In the ASPX clear out any <RowEditTemplate> you might have.
I noticed you don't have a SelectedRowStyle, to change the color of the selected row. Are you validating that the rows aren't selected via code?
Thank you the RowEditTemplate was indeed added to the grid, taking that out fixed the Ok/Cancel.
I dont want to change the color of my selected row, I do however want to be able to select more than one row at a time for delete purposes. So Im not sure what you mean by rows selected via code I had thought that happens using the Rowselector, and that setting the SelectTypeRowDefault to Extended would allow me to select more than one row at a time?
My assumption is then after this works, my deleterow event would fire each time for every row deleted?