Skip to content

ColumnOptions

Since v2.5.0

Select/typeahead options accepted by <GridColumn options={...} />.

Either bare values (label defaults to the value) or { label, value } pairs. Values and labels are serialized into an attribute, so they must not contain , or :.

type ColumnOptions = string | number[] | { label: string; value: string | number }[]