Questions tagged [loadmask]

17 questions
4
votes
1 answer

Extjs Load Mask

I have a grid that when clicked takes a few seconds to pull up my pop-up window. I would like to have a 'loading...' message displayed while the pop-up window is loading. This is what I have so far: onCellClick : function(view, td, eOpts ) { …
now_world
  • 940
  • 7
  • 21
  • 56
2
votes
1 answer

ExtJS 4 - Show LoadMask without spinner image

This should probably be pretty straighforward but I haven't been able to figure it out. I'm just trying to show a loadmask on a component without the spinner image. Everything else I want to look exactly the same. I've set up a jsfiddle with a…
zeke
  • 3,603
  • 2
  • 26
  • 41
2
votes
0 answers

ExtJS 4 - After using grid.reconfigure, load mask does not display

I'm using the reconfigure method of Ext.grid.Panel to switch between two stores in a grid. The load mask on the initial store works correctly, but no load mask is displayed for the second store. See jsFiddle here: http://jsfiddle.net/Esfu4/ When…
zeke
  • 3,603
  • 2
  • 26
  • 41
1
vote
1 answer

Grid loadMask malfunction.Set loadMask target config

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:…
jose
  • 1,490
  • 3
  • 30
  • 65
1
vote
1 answer

Internet Explorer 9 does not remove load mask on Ext.getBody using Extjs 4.2.2

I am using Extjs 4.2.2, on site load I am using Ext.getBody.mask('some msg') and on unload I use Ext.getBody.unmask(); I see its working nicely on all the browsers except Internet Explorer 9. Here it doesn't remove the loading mask. But when I open…
Nitin Soni
  • 87
  • 1
  • 13
1
vote
0 answers

Ext.LoadMask lets TextField to be edited. How to avoid it?

After applying a LoadMask, a textfield is still editable (although masked). Code snippet in 3.4.0: var enterPressedCounter=0; var btn = new Ext.Button({ text: 'Unmask it', handler: function(){ if(form.mask) form.mask.hide(); …
Ricardo
  • 3,696
  • 5
  • 36
  • 50
1
vote
2 answers

Load mask is not getting scrolled when page scrolled in extjs

We have used load mask for a component (pie chart) in our application. when the page loads load mask is shown on that component. But, when the page is scrolled, the mask is not getting moved. Can anyone help on this please? Note: We are using ExtJS…
ramya sri
  • 115
  • 2
  • 4
  • 10
1
vote
0 answers

ExtJS - Overriding LoadMask's Loading Image

I am trying to set my own image for the LoadMask. I am using the LoadMask as an alert message that describes why a form has been disabled. This form is within a modal that has opened from the window. I want the alert message to be centered and…
Alpenglow
  • 173
  • 1
  • 17
0
votes
2 answers

Ext JS LoadMask does't cover the whole target

const store = Ext.create('Ext.data.Store', { data: [{ firstname: "Michael", lastname: "Scott" }, { firstname: "Dwight", lastname: "Schrute" }, { firstname: "Jim", lastname: "Halpert" …
0
votes
0 answers

loadMask is only covering the first part of the grid

The initial loadMask covers the grid but I am still able to scroll while it is loading and it doesn't cover below the initial screen. I am looking for a way to either disable scrolling while loading the store, extend the loadMask so that it covers…
Mitchel
  • 1
  • 1
0
votes
1 answer

Using Ext.util.TaskRunner to display a clock in a load mask

Using ExtJS 5.1.0. Couldn't really think of any other way to do this, but I need a timer to show in a load mask while awaiting an Ajax response. On success, I then would unset mask and destroy the timer. The code works fine without the…
horcle_buzz
  • 2,101
  • 3
  • 30
  • 59
0
votes
2 answers

Sencha Touch : Tapping on mask event

Hi I am unable to solve this issue and could not find any way to find the tap even on the mask if the viewport is masked. I am using menu for slide navigation , when the menu is open I am applying mask on the view now if I tap on the masked view…
hari86
  • 659
  • 2
  • 16
  • 28
0
votes
1 answer

I see multiple loading masks when two Ajax requests are called parellely

In my sencha touch app whenever I call an Ajax request I set a loading mask on the screen until some response is sent back but lets say I have more than one Ajax request executing at the same time, I see multiple loading masks. How do I stop this…
Nick Div
  • 5,338
  • 12
  • 65
  • 127
0
votes
1 answer

loadMask doesn't get triggered by store load

i tried this var myMask = new Ext.LoadMask({msg:"GOINGGGGGG",target:Ext.getBody(),store:Ext.getStore('Bla.core.ext.store.Client')}); myMask.bindStore(Ext.getStore('Bla.core.ext.store.Client')); both adding the store in the config, and…
SnK
  • 528
  • 1
  • 11
  • 32
0
votes
1 answer

EXTjs 4.2.1 Display default data while loading grid data

I'm using EXTjs 4.2 and I would like to know if there is any way, using the LoadMask or other mechanism, to display default values to the rows of the grid while while scroll up/down action is performed and the grid needs to load info rather than…
Aebsubis
  • 1,921
  • 18
  • 19
1
2