How to disable filter Field when we Call any Event ?

i have huge amount of data i want to disable fields when data request start in below i have attach event onDataRequest in this method i want to do disable all filter fields? Please Help

$$(“dgAudioLib”).attachEvent(“onDataRequest”, function (start, count, callback, url)

Hi,

You can use onBeforeFilter and onAfterFilter events to disable/enable fields.

So in this case, you don’t need onDataRequest event, as filter events will cope with the task.

Here you can find an example: https://snippet.webix.com/xc3r0h6n

thank you so much its working