applies the callback to a range of cells
startrow | number | the start row id |
startcol | string | the start column id |
numrows | number | the amount of rows |
numcols | number | the amount of columns |
callback | function | the function calling for each cell in the specified range |
grid.mapCells(1, "title", 3, 2,
function(value, row_id, column_id, row_ind, col_ind) {
console.log(value, row_id, column_id, row_ind, col_ind);
});
Parameters of the callback function are: