Select
You can use selectionStyle to specify selection of areas of the grid in various ways.
Set selection style to BLOCK
If you specify style as block
among the properties of selectionStyle, you can designate the selection area as a block.
gridView.displayOptions.selectionStyle = "block"
Selection style to ROWS
If you specify style as rows
among the properties of selectionStyle, you can specify the selection area as multiple rows.
gridView.displayOptions.selectionStyle = "rows"
Selection style to COLUMNS
If you specify style as columns
among the properties of selectionStyle, you can specify the selection area as multiple columns.
gridView.displayOptions.selectionStyle = "columns"
Set selection style to SINGLE ROW
If you specify style as singleRow
among the properties of selectionStyle, you can specify only one row as the selection area.
gridView.displayOptions.selectionStyle = "singleRow"
Set selection style to SINGLE COLUMN
If you specify style as singleColumn
among the properties of selectionStyle, you can specify only one column in the selection area.
gridView.displayOptions.selectionStyle = "singleColumn"
Set selection style to NONE
If you specify style as none
among the properties of selectionStyle, you can prevent the selection area from being designated as anything.
gridView.displayOptions.selectionStyle = "none"