I am working on an ExtJS 6.2 grid that uses the 'classic' API. Although I am not very experienced with Ext, we have a grid component that we reuse with small modifications in different applications. In one of our apps, we have a text field for filtering. However, the default behavior triggers a reload too quickly for users to input meaningful data. I would like to slow down this reloading process. Ideally, I want the reload to only occur when the filter menu is closed. If that's not possible, increasing the time between user input and reload would be helpful.
The problem is that I'm not sure how to achieve this, and I couldn't find a solution in the documentation. Any suggestions?
Here is how the filter is defined:
{ type: 'string', dataIndex: 'assetId', value: '', active: false }