centurion-erp-ui
    Preparing search index...

    Interface UILayout

    Describes how the object is to be laid out within the UI. Although ALL keys are listed as optional, unless the object does not ever be displayed in the UI, this object should have at minimum, the view the object is to be rendered as.

    0.10.0

    interface UILayout {
        card?: [{ body: object[]; title: string }];
        dataset?: { columns: string[][] };
        detail?: LayoutDetail;
        table?: string[] | string[][];
    }
    Index

    Properties

    card?: [{ body: object[]; title: string }]

    Card Layout

    dataset?: { columns: string[][] }

    Dataset Layout

    Used by any instance of DataSetList.

    detail?: LayoutDetail

    Detail Layout

    Used by any instance of Detail.

    table?: string[] | string[][]

    Table Layout

    if an entry in the array, is itself an array, this will render as collapsible under the row in question.

    Used by any instance of DisplayTable