Rezi
Preparing search index...
core/src
TableProps
Type Alias TableProps<T>
TableProps
:
Readonly
<
{
accessibleLabel
?:
string
;
border
?:
"none"
|
"single"
;
borderStyle
?:
TableBorderStyle
;
columns
:
readonly
TableColumn
<
T
>
[]
;
data
:
readonly
T
[]
;
dsSize
?:
WidgetSize
;
dsTone
?:
WidgetTone
;
focusable
?:
boolean
;
focusConfig
?:
FocusConfig
;
getRowKey
:
(
row
:
T
,
index
:
number
)
=>
string
;
headerHeight
?:
number
;
id
:
string
;
key
?:
string
;
onRowDoublePress
?:
(
row
:
T
,
index
:
number
)
=>
void
;
onRowPress
?:
(
row
:
T
,
index
:
number
)
=>
void
;
onSelectionChange
?:
(
keys
:
readonly
string
[]
)
=>
void
;
onSort
?:
(
column
:
string
,
direction
:
"asc"
|
"desc"
)
=>
void
;
overscan
?:
number
;
rowHeight
?:
number
;
selection
?:
readonly
string
[]
;
selectionMode
?:
"none"
|
"single"
|
"multi"
;
selectionStyle
?:
TextStyle
;
showHeader
?:
boolean
;
sortColumn
?:
string
;
sortDirection
?:
"asc"
|
"desc"
;
stripedRows
?:
boolean
;
stripeStyle
?:
TableStripeStyle
;
virtualized
?:
boolean
;
}
,
>
&
LayoutConstraints
Props for table widget.
Type Parameters
T
=
unknown
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
Rezi
Loading...
Props for table widget.