The grid loadMask has some problems.
LoadMask:true
does not work.
If I choose to do as follows:
viewConfig: {
loadMask: {msg: 'Loading records ...'}
}
It works but the mask only covers the grid body, excluding toolbares.
I tried maskElement: 'el'
but did not work.
I do not intend to use setLoading ().
One solution might be target to my grid:
viewConfig: {
loadMask: {msg: 'Loading records ...', target: this}
}
But target: this
does not work.
Any idea how to get and set grid reference in the config target?
You would have to override the createMask function of AbstractView.
Fiddle