Preparing search index...
The search index is not available
react-declarative
react-declarative
types
react-declarative/components
IGridAction
Interface IGridAction<T>
Represents an interface for grid actions.
interface
IGridAction
<
T
>
{
action
?:
string
;
divider
?:
boolean
;
icon
?:
any
;
isDisabled
?:
(
row
:
T
,
payload
:
undefined
|
object
,
)
=>
boolean
|
Promise
<
boolean
>
;
isVisible
?:
(
row
:
T
,
payload
:
undefined
|
object
,
)
=>
boolean
|
Promise
<
boolean
>
;
label
?:
string
;
primary
?:
number
|
boolean
;
}
Type Parameters
T
The type of the row data.
Hierarchy
Omit
<
IOption
,
keyof
{
isDisabled
:
never
;
isVisible
:
never
}
>
IGridAction
Index
Properties
action?
divider?
icon?
is
Disabled?
is
Visible?
label?
primary?
Properties
Optional
action
action
?:
string
Optional
divider
divider
?:
boolean
Optional
icon
icon
?:
any
Optional
is
Disabled
isDisabled
?:
(
row
:
T
,
payload
:
undefined
|
object
)
=>
boolean
|
Promise
<
boolean
>
Optional
is
Visible
isVisible
?:
(
row
:
T
,
payload
:
undefined
|
object
)
=>
boolean
|
Promise
<
boolean
>
Optional
label
label
?:
string
Optional
primary
primary
?:
number
|
boolean
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
action
divider
icon
is
Disabled
is
Visible
label
primary
react-declarative
Loading...
Represents an interface for grid actions.