Check documentation for the latest version of dhtmlxSuite updateCellFromClipboard DHTMLX Docs

updateCellFromClipboard

sets the value of a cell from the clipboard

void updateCellFromClipboard( [string|number rowId,number cellInd] );
rowIdstring|numberthe id of a row (optional, the selected row is used by default)
cellIndnumberthe index of a column (optional, the selected cell is used by default)

Available only in PRO Edition

Example

//minimal parameters set
mygrid.updateCellFromClipboard();
//maximal parameters set
mygrid.updateCellFromClipboard("rowID",0);

Back to top