SMART datagrid v.1 > Classes > DisplayOptions

[ grids ver.1.3.6]   Back  Forward

DataLudi.DisplayOptions.mergedSelection  property

If it is true, the selection area will be set based on the merged cell. 

If it is false, the selection area will be set in each row. 

Defaults to false.

Getter
function mergedSelection(): Boolean
Setter
function setMergedSelection(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            mergedSelection: true
        }
    });
Code -2
    grid.setDisplayOptions({
        mergedSelection: true
    });
Code -3
    grid.displayOptions().setMergedSelection(true);
See Also
selectDisplay
showSingleSelection
Examples
Merged Cell Selection
Selection