Files
firecms/website/docs/entities/properties/boolean.md
2021-12-13 23:07:44 +01:00

472 B

id, title, sidebar_label
id title sidebar_label
boolean Boolean Boolean
import { buildProperty } from "./builders";

const availableProperty = buildProperty({
    title: "Available",
    dataType: "boolean"
});

validation

  • required Should this field be compulsory.
  • requiredMessage Message to be displayed as a validation error.

The widget that gets created is

  • SwitchField simple boolean switch

Links: