I cannot seem to figure out how to hold CTRL and select multiple RadGridView cells to select multiple rows at once.
When I attempt to record the actions, each time I hold CTRL and click a row, the recorder opens the record rather than just selects it.
When I attempt to use the following snippets of code to select a cell in row 1 and 2, the first selection is not retained:
RadGridView grid = Pages.Test.SilverlightApp.TestRadGridView;
grid.Rows[0].Cells[0].User.Click(MouseClickType.LeftClick, 1, 1, ArtOfTest.Common.OffsetReference.TopLeftCorner, ArtOfTest.Common.ActionPointUnitType.Percentage, ((System.Windows.Forms.Keys)(131072)));
grid.Rows[1].Cells[0].User.Click(MouseClickType.LeftClick, 1, 1, ArtOfTest.Common.OffsetReference.TopLeftCorner, ArtOfTest.Common.ActionPointUnitType.Percentage, ((System.Windows.Forms.Keys)(131072)));
How can I hold CTRL and select more than 1 RadGridView item, and retain each item(s) selected previously?
Thanks,
Nick
When I attempt to record the actions, each time I hold CTRL and click a row, the recorder opens the record rather than just selects it.
When I attempt to use the following snippets of code to select a cell in row 1 and 2, the first selection is not retained:
RadGridView grid = Pages.Test.SilverlightApp.TestRadGridView;
grid.Rows[0].Cells[0].User.Click(MouseClickType.LeftClick, 1, 1, ArtOfTest.Common.OffsetReference.TopLeftCorner, ArtOfTest.Common.ActionPointUnitType.Percentage, ((System.Windows.Forms.Keys)(131072)));
grid.Rows[1].Cells[0].User.Click(MouseClickType.LeftClick, 1, 1, ArtOfTest.Common.OffsetReference.TopLeftCorner, ArtOfTest.Common.ActionPointUnitType.Percentage, ((System.Windows.Forms.Keys)(131072)));
How can I hold CTRL and select more than 1 RadGridView item, and retain each item(s) selected previously?
Thanks,
Nick