Class Column : Constructor Method
| Column Constructor( String name, Integer id, Integer minimumWidth, Integer defaultWidth, Boolean canSort, Boolean canSize, String description ) |
Summary
Create a new column
Parameters
| Parameter | Description |
| String name |
Column name to use |
| Integer id |
Unique column ID |
| Integer minimumWidth |
Minimum width for this column |
| Integer defaultWidth |
Default width for the column |
| Boolean canSort |
True if the column can sort, false otherwise. |
| Boolean canSize |
True if the column is sizable, false otherwise |
| String description |
Description for the column as shown on the column customise popup. |
|
|
|
Examples
var c = new Column( "Channel Name", 1, 25, 50, true, true, "Full channel name" ) |
Requirements
build 1065
|