Hi,
no matter if I use
onStoreLoad: function (itemId) {
$$(“tasks_datatable”).hideOverlay();
}
or
onBeforeLoad: function () {
this.showOverlay(“Loading…”);
},
onAfterLoad: function () {
this.hideOverlay();
},
I cannot get the overlay working when using data collections via the “models” usage of webix jet. This means I can show it but I cannot hide it as neither onStoreLoad or onAfterLoad is called.
Anybody could help me with that?
If I just load it by parsing the url to the datatable directly everything is ok, but I would like to use the concept of webix jet and the data models.
Thanks,
Martin