I would like to remove values of a column inside my Slickgrid.
In this way I identify the id of column
grid.getColumnIndex('ColumnName');
Then, I would like to loop on grid rows, trying to clear the text in the cells
var myColumnID=grid.getColumnIndex('ColumnName');
var RowsNumber=grid.getDataLength();
for (var j = 1; j < RowsNumber; j++) {
var objRow = grid.getData().getItem(j);
// ??
}
How can I point to cell in column "myColumnID" and change its content? If the grid values are stored on multiple pages, does this idea work?
This task must be done on grid object or dataView object? Or both?