Check documentation for the latest version of dhtmlxSuite set DHTMLX Docs

set

associates the hash of data with some ID

void set(string|number id,object hash);
idstring|numberid of the item in question
hashobjecta javascript object which contains data

Example

myList.set(id,{
    property:value
});

Back to top