Categories | Question details Back To List | ||
Copy down It there a way to copy down a cell? Filling all the other cells in the column with one cell a reference... Answer posted by Support on Mar 12, 2008 07:31 You can try to use the following approach: var value = grid. cells(some_row_id,column_index).getValue(); grid.forEachRow(function(id){ grid.cells(id,column_index).setValue(value); }) |