Documentation
    Preparing search index...
    two_level_select: {
        blockDisplay: boolean;
        configFields: (
            __namedParameters: { name: string; table: any },
        ) => Promise<
            (
                | {
                    input_type: string;
                    label: string;
                    name: string;
                    options: string[];
                    sublabel?: undefined;
                    type?: undefined;
                }
                | {
                    input_type?: undefined;
                    label: string;
                    name: string;
                    options?: undefined;
                    sublabel?: undefined;
                    type: string;
                }
                | {
                    input_type?: undefined;
                    label: string;
                    name: string;
                    options?: undefined;
                    sublabel: string;
                    type: string;
                }
            )[],
        >;
        description: string;
        isEdit: boolean;
        run: (
            nm: string,
            v: any,
            attrs: GenObj,
            cls: string,
            reqd: boolean,
            field: GenObj,
        ) => string;
        type: string;
    } = ...

    Type Declaration

    • blockDisplay: boolean
    • configFields: (
          __namedParameters: { name: string; table: any },
      ) => Promise<
          (
              | {
                  input_type: string;
                  label: string;
                  name: string;
                  options: string[];
                  sublabel?: undefined;
                  type?: undefined;
              }
              | {
                  input_type?: undefined;
                  label: string;
                  name: string;
                  options?: undefined;
                  sublabel?: undefined;
                  type: string;
              }
              | {
                  input_type?: undefined;
                  label: string;
                  name: string;
                  options?: undefined;
                  sublabel: string;
                  type: string;
              }
          )[],
      >
    • description: string
    • isEdit: boolean
    • run: (
          nm: string,
          v: any,
          attrs: GenObj,
          cls: string,
          reqd: boolean,
          field: GenObj,
      ) => string
    • type: string