Skip to content

Latest commit

 

History

History
41 lines (23 loc) · 1.07 KB

File metadata and controls

41 lines (23 loc) · 1.07 KB

react-bs-datatable / helpers/types / CheckboxState

Interface: CheckboxState

helpers/types.CheckboxState

The checkbox used as a value of the record used in the states.

Table of contents

Properties

Properties

selected

selected: Set<string>

A Set type containing strings inferred from the header.checkbox.idProp field. These are always unique, as is the behavior of the Set type.

Defined in

helpers/types.ts:30


state

state: "none-selected" | "some-selected" | "all-selected"

The checkbox states. This is useful to determine the "Select all" and "Deselect all", as well as the table header's indeterminate state.

Defined in

helpers/types.ts:35