ColumnObject
컬럼 관련 클래스들의 기반 클래스
Signature:
export interface ColumnObject
Remarks
ColumnObject 의 모든 속성은 이를 상속한 ColumnHeader 등에서만 호출할 수 있다.
[하위 클래스]
Properties
Property | Type | Description |
---|---|---|
column | GridColumn | ColumnObject의 컬럼 |
popupMenu | ConfigObject[] | 팝업 메뉴 |
popupMenuName | string | 팝업 메뉴의 이름 |
template | string | 적용되어 표시될 html 템플릿 |
templateEvents | TemplateEvent | TemplateEvent[] | 생성된 요소에 이벤트를 추가한다. TemplateCellRenderer 의 설명을 참고 |
values | any | template에서 사용되는 값들 |
Properties Desc
column
ColumnObject의 컬럼
Type
- GridColumn
popupMenu
팝업 메뉴
Type
- ConfigObject[]
Remarks:
gridView
에 팝업메뉴를 등록하지 않고 ColumnObject에 바로 popupMenu를 등록할때 사용한다.
popupMenuName
팝업 메뉴의 이름
Type
- string
Remarks:
gridView
에 등록한 팝업메뉴이름을 지정한다. GridBase.addPopupMenu() 참조
template
적용되어 표시될 html 템플릿
Type
- string
Remarks:
TemplateCellRenderer 의 설명을 참고
templateEvents
생성된 요소에 이벤트를 추가한다.
TemplateCellRenderer 의 설명을 참고
Type
- TemplateEvent | TemplateEvent[]
values
template에서 사용되는 값들
Type
- any