Instance Properties
chartColorString. To specify color of this column in chart.
Sample
chartColor: 'eecc99'
frozenBool. To specify column is frozen. Those frozen column will never scroll horizontally and will always show up in left the side of grid.
groupedBool. To specify whether this column is in group.
headerString. Title of column header.
hiddenBool. To indicate whether column is hidden or not. Read only..
idString. Id of column.
inChartBool. To specify whether value of this column will appear in chart or not.
initValue:function(grid,rn,record)This function help developers define a formular cell.
grid: Grid object.
rn: Record of the row where the cell at.
returns: Value of the cell.
Sample
function example_initAvg(grid,rn,record){
var revenue2006 = grid.getColumnValue('revenue2006',rn);
var revenue2007 = grid.getColumnValue('revenue2007',rn);
var revenue2008 = grid.getColumnValue('revenue2008',rn);
var avg =(revenue2006+revenue2007+revenue2008)/3;
return avg;
}
minWidthInteger. To specify minimum column width when user resizes column.
moveableBool. To specify whether can column can exchange position with others by user dragging column's header. Set to true by default.
printable Bool. To specify whether this column will be printed out. Set to true by default.
resizableBool. To specify whether column is resizable by user dragging risizing handler. Set to true by default.
sortableBool. To specify whether column is sortable by user clicking column's header. Set to true by default.
widthInteger. Width of column in pixel. Percentage not supported.