Selection
By default, the FlexGrid allows you to select a range of cells with the mouse or keyboard, just like Excel.
The selectionMode property allows you to change this behavior so that users can be restricted from selecting rows, row ranges, non-contiguous rows (like in a list-box), single cells, or nothing at all.
Regardless of the current selectionMode, the grid raises selectionChanging and selectionChanged events when the selection changes. And you can use the selection property to get or set the current selection as a CellRange value.
Current selection: (0,0)-(0,0).
In ListBox mode, users can select individual rows using ctrl+click, and you can check whether rows are selected using the row's isSelected property.
The FlexGrid has built-in clipboard support. Press ctrl+c to copy the current selection to the clipboard.