Check documentation for the latest version of dhtmlxSuite refresh DHTMLX Docs

refresh

repaints an item or the whole dataview

void refresh( [string|number id] );
idstring|numberid of the item in question, optional

Example

//repaint a single item
myDataView.refresh(id);
//repaint the whole view
myDataView.refresh();

Back to top