SmartClient Version: v9.1p_2017-03-06/AllModules Development Only (built 2017-03-06)
All browsers
How do we do select multiple rows (that are not beside each other) in a ListGrid using keyboard? I am able to hold SHIFT while pressing the arrow keys to multi-select a RANGE. However, I want to be able to select rows that are not directly connected in the data table... such as selecting row 1, row 3, row 7 using just the keyboard.
https://www.smartclient.com/smartcli...tchOperationFS
All browsers
How do we do select multiple rows (that are not beside each other) in a ListGrid using keyboard? I am able to hold SHIFT while pressing the arrow keys to multi-select a RANGE. However, I want to be able to select rows that are not directly connected in the data table... such as selecting row 1, row 3, row 7 using just the keyboard.
https://www.smartclient.com/smartcli...tchOperationFS
Code:
isc.ListGrid.create({
ID:"dsListGrid",
width: "100%",
height: "100%",
autoFitData: "horizontal",
autoFetchData: true,
dataSource: "supplyItem" ,
selectionType:"multiple"
});
Comment