Caption of the column. It defines the text that appears on to of the column.
Use Caption to label the type of item that appears in the column.
enum getCellRenderType(
)
|
|
The CellRenderType defines how the cells for a specific column are rendered.
Current possible values are creEdit and creBoolean where creEdit is default. If the column has a cell render type of creEdit the property Editable has to be true in order to be able to edit the selected cell. Note that the edited values are not transfered to the VCL for PHP framework. They are available on client side only. If creBoolean is set the cell value needs to be set to true or false. The renderer then paints a checkbox. Note that it is read-only mode only. If Editable is set to true the user may enter text rather than changed the checkbox state.
Width of the column.
The width is not fixed and therefor can be changed be the user on the client side. The width may be specified as integer number of pixels (e.g. 100), a string representing percentage of the inner width of the Table (e.g. "25%"), or a string representing a flex width (e.g. "1*").
Tags: