What method do I use for SlickGrid to get the contents of a cell? For example:
... grid = new Slick.Grid($("#myGrid"), data, columns, options); grid.onAddNewRow = function(item,colDef) { grid.removeRow(data.length); data.push(item); grid.updateRowCount(); grid.render(); } grid.onCurrentCellChanged = function(args){
Thanks in advance!
javascript jquery jquery-plugins slickgrid
maximus
source share