型・APIリファレンス
    Preparing search index...

    Interface EntityListingEditorConfig

    EntityListingエディタ設定(フィルタ条件の内部状態用)。 EntityListingEditorBase を継承し、全エディタタイプの固有フィールドを含む緩い型定義。 FilterItem.editorConfig等、エディタタイプを限定しない箇所で使用する。 型安全なエディタ定義は types/entitylisting/editor/ を参照。

    interface EntityListingEditorConfig {
        defaultFalseLabel?: string;
        defaultTrueLabel?: string;
        displayType?: string;
        editor?: EntityListingEditorConfig;
        entityName?: string;
        type: string;
        values?: { label: string; value: string }[];
        viewName?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    defaultFalseLabel?: string

    False表示ラベル(BOOLEAN型の場合)

    defaultTrueLabel?: string

    True表示ラベル(BOOLEAN型の場合)

    displayType?: string

    表示タイプ

    内部エディタ(EXPRESSION型の場合)

    entityName?: string

    参照先Entity名(REFERENCE型の場合)

    type: string

    エディタタイプ

    values?: { label: string; value: string }[]

    選択肢(SELECT型の場合)

    viewName?: string

    参照ダイアログのView名(REFERENCE型の場合)