MobX RESTful table
Preparing search index...
Field
Interface Field<T>
interface
Field
<
T
extends
DataObject
>
{
invalidMessage
?:
ReactNode
;
key
?:
keyof
T
;
options
?:
SelectOption
[]
;
renderInput
?:
(
data
:
T
,
meta
:
Field
<
T
>
)
=>
ReactNode
;
renderLabel
?:
ReactNode
|
(
(
key
:
keyof
T
)
=>
ReactNode
)
;
uploader
?:
FileModel
;
validMessage
?:
ReactNode
;
}
Type Parameters
T
extends
DataObject
Hierarchy
Pick
<
InputHTMLAttributes
<
HTMLInputElement
>
,
|
"type"
|
"readOnly"
|
"disabled"
|
"required"
|
"min"
|
"minLength"
|
"max"
|
"maxLength"
|
"step"
|
"pattern"
|
"multiple"
|
"accept"
|
"placeholder"
,
>
Pick
<
FormFieldProps
,
"options"
|
"rows"
|
"contentEditable"
>
Pick
<
EditorProps
,
"tools"
>
Partial
<
Record
<
`
${
""
|
"in"
}
validMessage
`
,
ReactNode
>
>
Field
Index
Properties
invalid
Message?
key?
options?
render
Input?
render
Label?
uploader?
valid
Message?
Properties
Optional
invalid
Message
invalidMessage
?:
ReactNode
Optional
key
key
?:
keyof
T
Optional
options
options
?:
SelectOption
[]
Optional
render
Input
renderInput
?:
(
data
:
T
,
meta
:
Field
<
T
>
)
=>
ReactNode
Optional
render
Label
renderLabel
?:
ReactNode
|
(
(
key
:
keyof
T
)
=>
ReactNode
)
Optional
uploader
uploader
?:
FileModel
Optional
valid
Message
validMessage
?:
ReactNode
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
On This Page
Properties
invalid
Message
key
options
render
Input
render
Label
uploader
valid
Message
MobX RESTful table
Loading...