showOverlay freezes scrollbar datatable

Hi
when showOverlay is shown, it freezes the datatable horizontal scrollbar and I can’t scroll while showing the message.
onAfterLoad: function() {
if (!this.count()) {
this.showOverlay(‘no records found.’);
}
},
can someone help me with this ?
Thanks in advance.

I managed to fix it by changing the z-index.
.webix_overlay {
z-index: 1 !important;
}

1 Like