Function ctxToOneOfEnumCellProps

  • Parameters

    Returns {
        cells?: JsonFormsCellRendererRegistryEntry[];
        config?: any;
        data: any;
        enabled: boolean;
        errors: string;
        id: string;
        isValid: boolean;
        options: EnumOption[];
        path: string;
        renderers?: JsonFormsRendererRegistryEntry[];
        rootSchema: JsonSchema;
        schema: JsonSchema;
        uischema: ControlElement;
        visible: boolean;
    }

    • Optional cells?: JsonFormsCellRendererRegistryEntry[]

      All available cell renderers.

    • Optional config?: any

      Any configuration options for the element.

    • data: any

      The data to be rendered.

    • enabled: boolean

      Whether the rendered element should be enabled.

    • errors: string

      Any validation errors that are caused by the data to be rendered.

    • id: string

      A unique ID that should be used for rendering the scoped UI schema element.

    • isValid: boolean
    • options: EnumOption[]
    • path: string

      Instance path the data is written to, in case of a control.

    • Optional renderers?: JsonFormsRendererRegistryEntry[]

      All available renderers.

    • rootSchema: JsonSchema
    • schema: JsonSchema

      The JSON schema that describes the data.

    • uischema: ControlElement
    • visible: boolean

      Whether the rendered element should be visible.

Generated using TypeDoc