I have a GridPanel that updates every 10 seconds.
var refreshEnvironmentsStoreTask = { run: function() { this.getEnvironmentsStore().load() }, scope: this, interval: 10000
As a result, frequent updates in the grid appear to flicker. I want to disable LoadMask, but the following code does not work:
Ext.define('MyGrid' ,{ extend: 'Ext.grid.Panel', store : 'Environments', viewConfig: { loadMask: false } });
source share