SMART datagrid v.1 > Classes > GridBase
The number of top columns being set in the grid.
You can know the number of top columns being displayed through visibleColumnCount.
for (var i = 0, cnt = grid.columnCount(); i < cnt; i++) {
var col = grid.getColumn(i);
col && col.setWidth(col.width() + 10));
}