Check documentation for the latest version of dhtmlxSuite onRowPaste DHTMLX Docs

onRowPaste

fires for each row pasted from the clipboard (block selection extension)

void onRowPaste(string|number rId);
rIdstring|numberthe id of the row

Available only in PRO Edition

Example

grid.attachEvent("onRowPaste", function(rId){
    // your code here
});

Back to top