OPEN_GRID API - v1.5.2
    Preparing search index...

    Interface EditorDef

    편집기를 어떻게 열지 자세히 지정합니다. 예를 들어 select 편집기에 선택지 목록을, number 편집기에 최소·최대·증가폭을 함께 줄 때 씁니다(column.editor 에 이 객체를 넘김).

    Detailed spec for how the editor opens — e.g. a select editor's choices, or a number editor's min/max/step (passed to column.editor).

    エディターをどう開くかを詳しく指定します。たとえば select エディターに選択肢の一覧を、 number エディターに最小・最大・増減幅を一緒に渡すときに使います(column.editor にこのオブジェクトを渡す)。

    详细指定编辑器如何打开。例如给 select 编辑器传选项列表,或给 number 编辑器传最小值、 最大值和步长(把该对象传给 column.editor)。

    interface EditorDef {
        format?: string;
        max?: number;
        min?: number;
        multiple?: boolean;
        options?: (string | { label: string; value: any })[];
        placeholder?: string;
        step?: number;
        type: EditorType;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      편집기별 추가 옵션(자유 키).

      Editor-specific extra options (free-form keys).

      エディターごとの追加オプション(自由なキー)。

      各编辑器的额外选项(自由键)。

    Index

    Properties

    format?: string

    입력값 포맷 문자열.

    Format string for the input value.

    入力値のフォーマット文字列。

    输入值的格式字符串。

    max?: number

    number 편집기의 최댓값.

    Maximum for a number editor.

    number エディターの最大値。

    number 编辑器的最大值。

    min?: number

    number 편집기의 최솟값.

    Minimum for a number editor.

    number エディターの最小値。

    number 编辑器的最小值。

    multiple?: boolean

    select 에서 다중 선택 허용.

    Allow multiple selection in select.

    select での複数選択を許可。

    允许 select 多选。

    options?: (string | { label: string; value: any })[]

    select 편집기의 선택지(문자열 또는 {label,value}).

    Choices for a select editor.

    select エディターの選択肢(文字列または {label,value})。

    select 编辑器的选项(字符串或 {label,value})。

    placeholder?: string

    빈 편집기에 보일 안내 문구.

    Placeholder shown in an empty editor.

    空のエディターに表示する案内文。

    编辑器为空时显示的提示文字。

    step?: number

    number 편집기의 증가 단위.

    Step increment for a number editor.

    number エディターの増減の単位。

    number 编辑器的步长。

    type: EditorType

    사용할 내장 편집기 이름.

    Which built-in editor to use.

    使用する組み込みエディターの名前。

    使用的内置编辑器名称。