Preparing search index...
The search index is not available
react-declarative
react-declarative
types
react-declarative/components
IGridColumn
Interface IGridColumn<T, Payload>
Represents a column in a table.
interface
IGridColumn
<
T
=
RowData
,
Payload
=
IAnything
>
{
align
?:
"left"
|
"right"
|
"center"
|
"stretch"
;
field
?:
keyof
T
;
format
?:
(
row
:
T
,
payload
:
Payload
)
=>
any
;
label
:
string
;
minWidth
?:
number
;
width
?:
Dimension
|
(
containerWidth
:
number
)
=>
Dimension
;
}
Type Parameters
T
=
RowData
The type of the row data.
Payload
=
IAnything
Index
Properties
align?
field?
format?
label
min
Width?
width?
Properties
Optional
align
align
?:
"left"
|
"right"
|
"center"
|
"stretch"
Optional
field
field
?:
keyof
T
Optional
format
format
?:
(
row
:
T
,
payload
:
Payload
)
=>
any
label
label
:
string
Optional
min
Width
minWidth
?:
number
Optional
width
width
?:
Dimension
|
(
containerWidth
:
number
)
=>
Dimension
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
align
field
format
label
min
Width
width
react-declarative
Loading...
Represents a column in a table.