datastore

custom DataStore object

  • object

Example of usage

/*
	This functionality has very specific use-case
	Most probably you will never use it directly
*/
var data = new dhx.DataStore();
data.add({ label:"text"});
 
dhx.ui({
    view:"list",
    datastore:data,
    type:{
    	template:"#label#"
    }
});