I have two buttons which move the selected row up or down one visibleIndex position in the gird. Once the grid refreshes its view and the row has moved, I no longer have any items in the selected.row collection. The end result I need to achieve is to keep the original selected row as selected. Is this possible?
Dave K.
Hi Dave,
How exactly are you moving the row?
I am using a UltraDataSource to bind data to my grid. I have a collection of objects that are being used to create ultradatasource rows and then this datasource populates the grid values via the udsHealthIssue_CellDataRequested event calls.. Upon click of the up arrow, I swap the myObjectItem.DispalySequence values of the item selected and the item in the visiblePosition about it. I then clear my datasource rows and recreate them. This triggers udsHealthIssue_CellDataRequested event to populate the values in the grid rows.