Categories | Question details Back To List | ||
Add row to _ROWS_ADDED list I load dhtmlxGrid from XML and for some reasons want to mark some rows to be included into the _ROWS_ADDED list when sending the form. Is it possible? Answer posted by Stanislav (support) on Dec 17, 2009 02:07 After data loading, you can call grid.callEvent("onRowAdded",[id]); where id - id of the row in question. It will trigger inner logic and mark row as added. |