Interface GroupRenderInstructions<Custom>

interface GroupRenderInstructions<Custom> {
    custom: Custom;
    disabled: boolean;
    groups: GroupRenderInstructions<Custom>[];
    id: string;
    questions: QuestionRenderInstructions<Custom>[];
    validating: boolean;
}

Type Parameters

  • Custom = any

Hierarchy

  • ItemRenderInstructions<Custom>
    • GroupRenderInstructions

Properties

custom: Custom

Any values that help you determine how to render the frontend UI.

disabled: boolean

Whether or not this item is disabled.

Sub-groups.

id: string

Item id.

Questions under this group.

validating: boolean

Whether or not there are questions in this group that are currently being validated.

This value can be true if the validator used is an aysnc function.