Check documentation for the latest version of dhtmlxSuite copyRowContent DHTMLX Docs

copyRowContent

copies a row's content to another existing row

void copyRowContent(string|number from_row,string|number to_row_id);
from_rowstring|numberid of the row to copy content from
to_row_idstring|numberof the row to copy content to

Example

myGrid.copyRowContent("from_row_id","to_row_id");

Back to top