sets the value of a cell from the clipboard
rowId | string|number | the id of a row (optional, the selected row is used by default) |
cellInd | number | the index of a column (optional, the selected cell is used by default) |
Available only in PRO Edition
//minimal parameters set
mygrid.updateCellFromClipboard();
//maximal parameters set
mygrid.updateCellFromClipboard("rowID",0);
Back to top