GridBaseConfig
Signature:
export interface GridBaseConfig extends GridOptions, EventHandlers<GridBase>
Extends: GridOptions, EventHandlers<GridBase>
Properties
Property | Type | Description |
---|---|---|
cellStyleCallback | CellStyleCallback | Sets the cellStyleCallback. |
columns | (DataColumn | string | LiteralColumn)[] | Column information displayed in the grid. |
contextMenu | (PopupMenu | PopupMenuItem)[] | Specifies the menu items to be added to the context menu displayed when right-clicking on the grid. |
layout | (LayoutItem | string)[] | Set the column layout of the grid. |
rowStyleCallback | RowStyleCallback | Set rowStyleCallback. |
Properties Desc
cellStyleCallback
Set cellStyleCallback.
Type
- CellStyleCallback
Remarks:
See GridBase.setCellStyleCallback()
columns
Column information displayed in the grid.
Type
- (DataColumn | string | LiteralColumn)[]
Remarks:
contextMenu
Specifies the menu items to be added to the context menu displayed when right-clicking the grid.
Type
- (PopupMenu | PopupMenuItem)[]
Remarks:
layout
Sets the grid's column layout.
Type
- (LayoutItem | string)[]
Remarks:
See GridBase.setColumnLayout()
rowStyleCallback
Sets the rowStyleCallback.
Type
- RowStyleCallback
Remarks:
See GridBase.setRowStyleCallback()