LineCellEditor
한 줄 입력을 받을 수 있는 텍스트 편집기
Signature:
export interface LineCellEditor extends TextCellEditor Extends: TextCellEditor
Remarks
RealGrid의 기본편집기. 컬럼에 editor 속성을 지정하지 않거나 'line' / 'text' 를 지정하면 LineCellEditor가 사용된다. TextCellEditor 를 상속한다.
[상위 클래스]
Example
// string type
column.editor = "line"
// object type
column.editor = { type: "line", maxLength: 1}Properties
| Property | Type | Description |
|---|---|---|
| type | "line" | "text" | 셀 편집기 종류: 한 줄 |
Properties Desc
type
셀 편집기 종류: 한 줄
Type - "line" | "text"