0
votes

i am using Extjs 4.1 when store load its mask the grid. store load every 10 sec how to remove loading mask from grid try with this option

loadMask:false
viewConfig : {
    loadMask:false
}

but not able to remove mask effect is there any way to remove mask effect from grid in extjs 4.1

3
when can I get my hands on 4.1? :)Neil McGuigan
sencha.com/blog/ext-js-4-1-developer-preview download performance previewjayesh

3 Answers

1
votes

Try with, .unmask(). Every element in extjs has at least an el property which is in fact an Ext.Element. Take a look at this question. Also, you could provide some code so it would be easier! Cheers!

0
votes

Take a look at an example. Also If this does not work you should check :

  • your event handlers
  • Or some other component rendered over your grid (unlikely...)
0
votes

You can edit your store as:

var store = new Ext.data.JsonStore({
    root : 'data',
    autoLoad : true,
    Ext.LoadMask({
        disabled : true
    }),
    proxy : ......,
    fields : [.....]
})

Test once