apex-grid
    Preparing search index...

    Interface GridSelectionConfiguration

    Grid-level row-selection configuration.

    interface GridSelectionConfiguration {
        enabled?: boolean;
        mode?: SelectionMode;
        showCheckboxColumn?: boolean;
    }
    Index

    Properties

    enabled?: boolean

    Whether row selection is enabled. Disabled by default.

    Single-row vs multi-row selection. Defaults to 'multiple'.

    showCheckboxColumn?: boolean

    Whether to render the built-in checkbox column at the start of every row. When false, selection is still available via the public API (selectRow, selectedRows = ...) and via Space on the active row. Defaults to false.