Check documentation for the latest version of dhtmlxSuite get DHTMLX Docs

get

gets the object of the data item with the specified id

object get(string|number id);
idstring|numberid of the item in question
objectthe object of a data item

Example

var data = myDataView.get(id);
alert(data.Version);
data.Version = 2; // beware that you need to force the refresh

Back to top