0

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

jayesh
  • 2,422
  • 7
  • 44
  • 78

3 Answers3

1

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!

Community
  • 1
  • 1
Davor Zubak
  • 4,726
  • 13
  • 59
  • 94
0

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...)
acteon
  • 429
  • 3
  • 7
0

You can edit your store as:

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

Test once

smottt
  • 3,272
  • 11
  • 37
  • 44
Mayur Gite
  • 397
  • 4
  • 16