ColumnObject
Base class for column-related classes
Signature:
export interface ColumnObject
Remarks
All properties of ColumnObject can be called only from ColumnHeader that inherits it.
[subclass]
Properties
Property | Type | Description |
---|---|---|
column | GridColumn | Column of ColumnObject |
popupMenu | ConfigObject[] | pop-up menu |
popupMenuName | string | Name of pop-up menu |
template | string | HTML template to be applied and displayed |
templateEvents | TemplateEvent | TemplateEvent[] | Add events to generated elements. See the description of TemplateCellRenderer |
values | any | Values used in template |
Properties Desc
column
Column of ColumnObject
Type
- GridColumn
popupMenu
pop-up menu
Type
- ConfigObject[]
Remarks:
Used when registering a popupMenu directly in ColumnObject without registering it in gridView
.
popupMenuName
Name of pop-up menu
Type
- string
Remarks:
Specifies the name of the pop-up menu registered in gridView
. See GridBase.addPopupMenu()
template
HTML template to be applied and displayed
Type
- string
Remarks:
Refer to the description of TemplateCellRenderer
templateEvents
Add events to generated elements.
See the description of TemplateCellRenderer
Type
- TemplateEvent | TemplateEvent[]
values
Values used in template
Type
- any