I've a GridPanel which is updated every 10 seconds.

var refreshEnvironmentsStoreTask = {
    run: function() {
        this.getEnvironmentsStore().load()
    },
    scope: this,
    interval: 10000 //10 second
}
Ext.TaskManager.start(refreshEnvironmentsStoreTask);

As result of frequent updates on the grid appears flicker. I want to disable LoadMask but next code doesn't work:

Ext.define('MyGrid' ,{
    extend: 'Ext.grid.Panel',
    store : 'Environments',
    viewConfig: {
        loadMask: false
    }
});
link|improve this question
feedback

1 Answer

Have you tried creating a simple page and disabling it there before doing it on your page? It seems your setting the default which is false to false.

Ext.LoadMask

Ext.ComponentLoader

link|improve this answer
Thanks for response. I've already found solution. This is a extjs 4.0.1 bug. – txt_flow Jun 25 '11 at 7:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.