Rezi
Preparing search index...
core/src
UseTableOptions
Type Alias UseTableOptions<T>
UseTableOptions
:
Readonly
<
Omit
<
TableProps
<
T
>
,
|
"id"
|
"columns"
|
"data"
|
"getRowKey"
|
"selection"
|
"selectionMode"
|
"onSelectionChange"
|
"sortColumn"
|
"sortDirection"
|
"onSort"
,
>
&
{
columns
:
readonly
TableColumn
<
T
>
[]
;
defaultSelection
?:
readonly
string
[]
;
defaultSortColumn
?:
string
;
defaultSortDirection
?:
SortDirection
;
getRowKey
?:
(
row
:
T
,
index
:
number
)
=>
string
;
id
?:
string
;
onSelectionChange
?:
(
keys
:
readonly
string
[]
)
=>
void
;
onSortChange
?:
(
column
:
string
,
direction
:
SortDirection
)
=>
void
;
rows
:
readonly
T
[]
;
selectable
?:
TableSelectionMode
;
sortable
?:
boolean
;
}
,
>
Type Parameters
T
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
Rezi
Loading...