Fable.Modulo


CheckboxBuilder Type

Computation expression used to build a "checkbox" field model

Constructors

Constructor Description

CheckboxBuilder()

Full Usage: CheckboxBuilder()

Returns: CheckboxBuilder
Returns: CheckboxBuilder

Instance members

Instance member Description

disabled x

Full Usage: disabled x

Parameters:
    x : bool

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Disable the field

x : bool
Returns: FormCheckboxModel<'f>

error x

Full Usage: error x

Parameters:
    x : string

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the underlying initial value of the input field as "Error"

x : string
Returns: FormCheckboxModel<'f>

label x

Full Usage: label x

Parameters:
    x : string

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field's attached label

x : string
Returns: FormCheckboxModel<'f>

label' x

Full Usage: label' x

Parameters:
    x : string

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field's attached label and placeholder

x : string
Returns: FormCheckboxModel<'f>

placeholder x

Full Usage: placeholder x

Parameters:
    x : string

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field's placeholder text

x : string
Returns: FormCheckboxModel<'f>

raw_value x

Full Usage: raw_value x

Parameters:
Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f, 't

Set the underlying initial value of the input field

x : Result<bool, string>
Returns: FormCheckboxModel<'f>

size x

Full Usage: size x

Parameters:
    x : int

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field's relative size text

x : int
Returns: FormCheckboxModel<'f>

tooltip

Full Usage: tooltip

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field's tooltip text

Returns: FormCheckboxModel<'f>

tooltip x

Full Usage: tooltip x

Parameters:
    x : string

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field's tooltip text

x : string
Returns: FormCheckboxModel<'f>

tooltip x

Full Usage: tooltip x

Parameters:
Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field's tooltip text

x : TooltipKind
Returns: FormCheckboxModel<'f>

validator x

Full Usage: validator x

Parameters:
    x : 'f -> bool -> Result<bool, string>

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the field value's validator function

x : 'f -> bool -> Result<bool, string>
Returns: FormCheckboxModel<'f>

value x

Full Usage: value x

Parameters:
    x : bool

Returns: FormCheckboxModel<'f>
Modifiers: inline
Type parameters: 'f

Set the underlying initial value of the checkbox field

x : bool
Returns: FormCheckboxModel<'f>