wolverine4277
28 Jun 2007, 12:54 PM
Anybody knows why when i change from:
<div id="loading-mask" class="ext-el-mask"></div>
<div id="loading-msg" class="ext-el-mask-msg x-mask-loading">
<div>Loading...</div>
</div>
to:
<div id="mascara-de-precarga" class="ext-el-mask"></div>
<div id="mensaje-de-precarga" class="ext-el-mask-msg x-mask-loading">
<div>Cargando...</div>
</div>
in the .html file and change from:
var mask = Ext.get('loading-mask');
var msg = Ext.get('loading-msg');
to:
var mascaraDePrecarga = Ext.get('mascara-de-precarga');
var mensajeDePrecarga = Ext.get('mensaje-de-precarga');
in the .js file the loading message appears in the topleft corner and not in the middle of window? in fact, changing only from id 'loading-msg' to 'mensaje-de-precarga' results in the same behavior...
The use of other names for id's and variables is because i'm from Argentina and for the team is more simple understood the source code with names in our language...
Thanks.
<div id="loading-mask" class="ext-el-mask"></div>
<div id="loading-msg" class="ext-el-mask-msg x-mask-loading">
<div>Loading...</div>
</div>
to:
<div id="mascara-de-precarga" class="ext-el-mask"></div>
<div id="mensaje-de-precarga" class="ext-el-mask-msg x-mask-loading">
<div>Cargando...</div>
</div>
in the .html file and change from:
var mask = Ext.get('loading-mask');
var msg = Ext.get('loading-msg');
to:
var mascaraDePrecarga = Ext.get('mascara-de-precarga');
var mensajeDePrecarga = Ext.get('mensaje-de-precarga');
in the .js file the loading message appears in the topleft corner and not in the middle of window? in fact, changing only from id 'loading-msg' to 'mensaje-de-precarga' results in the same behavior...
The use of other names for id's and variables is because i'm from Argentina and for the team is more simple understood the source code with names in our language...
Thanks.