Check documentation for the latest version of dhtmlxSuite updateRowFromClipboard DHTMLX Docs

updateRowFromClipboard

sets the value of a row from the clipboard

void updateRowFromClipboard( [string|number rowId] );
rowIdstring|numberthe id of a row (optional, the selected row is used by default)

Available only in PRO Edition

Example

//minimal parameters set
mygrid.updateRowFromClipboard();
//maximal parameters set
mygrid.updateRowFromClipboard("rowID");

Back to top