Sets or retrieves the array of the column indices (in display order).
The display position of the grid column is not necessarily the same as the column index in the datasource. It is possible to show only some of the datasource columns and show them in the different order. The array of the column indices defines which datasource columns correspond to each visible column of the grid.
var value = obj.getColumnIndices();
obj.setColumnIndices(value);
obj.onColumnIndicesChanging = function(value){...};
obj.onColumnIndicesChanged = function(value){...};
obj.onColumnIndicesError = function(value){...};
var myText = [
["Some text", "123", "456.00"],
["cell", "456", "789.99"]
];
obj.setColumnIndices([2, 0]); // show columns 2 and 0, hide column 1
Row indices
Column properties: count, position, width