data

inner DataStore

DataStore data;

Example

var grid = webix.ui({
    view:"datatable", //any data object
    url:"data.php",
});
 
grid.data.ignore(() => grid.data.add({ some: "text" }));

Details

Normally, you don't need to access DataStore directly. The component provides its own commands which call the datastore API inside. Still, in some cases you may want to directly access the API or events of the datastore.

Check DataStore for full API reference.

Back to top