I am trying to use this code but i am having problems:
1) Do I need to define a div for this, say
<div id='dlg' class="easyui-dialog" data-options='collapsed:true, closed:true'></div>
I have to add closed:true because when i run my form it was shown on the screen...
And to call I use
$('#dlg').dialog('showMask', 'Actualizando...');
But nothing is shown... I also add 'open' and it show a small dialog and above it the message :
$('#dlg').dialog('open');
$('#dlg').dialog('showMask', 'Actualizando...');
What i am doing wrong ?
TIA;
Yamil