Type Alias: FieldCheckboxValidator
type FieldCheckboxValidator = FieldValidator<CheckboxBool>;
Defined in: packages/blockly/core/field_checkbox.ts:322
A function that is called to validate changes to the field's value before they are set.
See
https://docs.blockly.com/guides/create-custom-blocks/fields/validators/#return-values
Param
newValue
The value to be validated.
Returns
One of three instructions for setting the new value: T, null,
or undefined.
-
Tto set this function's returned value instead ofnewValue. -
nullto invokedoValueInvalid_and not set a value. -
undefinedto setnewValueas is.