I created UI like this
config = {
isolate : true,
container: "a",
borderless:true,
type:"line", padding:8,
id:"layout",
rows:[ {
id:"bid",
view:"accordion",
cols:[{
body:{
rows: [{
},priceDatatable
]}
}]
},
{ }]
};
webix.extend($$("layout"), webix.ProgressBar);
where priceDatatable is Datatabale.now here I am Using overlay like this…
$$("layout").disable();
$$("layout").showProgress({
type:"top",
delay:delay,
hide:true
});
i tried with these Id ‘layout, bid’
but it is showing object does not support method showProgress , can you suggest me , how I can use overlay Here.