NullableBooleanField

Source
import { NullableBooleanField } from "@prestojs/viewmodel";
Hierarchy

API

Constructor

new NullableBooleanField(?options)
Params:
ParameterTypeDescription
options
An object with the properties below
options.asyncChoicesAsyncChoicesInterface
options.blankboolean
options.blankAsNullboolean
options.choicesMap|[boolean, string][]
options.defaultValuenull|boolean|
options.formatterPropsRecord
options.helpTextstring
options.labelstring
options.readOnlyboolean
options.widgetPropsRecord
options.writeOnlyboolean

Methods

clone()
Returns:Field
contributeToClass(viewModel)
Params:
ParameterTypeDescription
*viewModelViewModelConstructor
Returns:void
format(value)
Params:
ParameterTypeDescription
*valueboolean
Returns:any
getFormatterProps()
Returns:{[fieldName: string]: any }
getWidgetProps()
Returns:{[fieldName: string]: any }
isEqual(value1,value2)
Params:
ParameterTypeDescription
*value1boolean
*value2boolean
Returns:boolean
normalize(value)
Params:
ParameterTypeDescription
*valueboolean
Returns:null|boolean
parse(value)
Params:
ParameterTypeDescription
*valueany
Returns:null|boolean
toJS(value)
Params:
ParameterTypeDescription
*valueboolean
Returns:null|string|number|Record
toString()
Returns:string

Properties

blank

Source
boolean

blankAsNull

Source
boolean

boundRecord

Source
undefined|ViewModelInterface

choices

Source
Map

defaultValue

Source
undefined|null|boolean|Promise

formatterProps

Source
Record

helpText

Source
string

isBound

Source
boolean

label

Source
string

name

Source
string

readOnly

Source
boolean

value

Source
undefined|boolean

widgetProps

Source
Record

writeOnly

Source
boolean

Static Properties

fieldClassName

Source
string