EasyUI Forum

General Category => General Discussion => Topic started by: aswzen on December 02, 2015, 04:35:45 AM



Title: easyUI Panel mask feature (ex:for disabling all activities on a panel) [SOLVED?]
Post by: aswzen on December 02, 2015, 04:35:45 AM
I think it will be great if easyui panel supports masking  :)

because extJs have this feature :)

Thank you in advance


Title: Re: easyUI Panel mask feature (ex: for disabling all activities on a panel)
Post by: jarry on December 02, 2015, 03:16:17 PM
You can call the showMask method to display a mask over the panel. This method is extended from
http://www.jeasyui.com/forum/index.php?topic=3641.0


Title: Re: easyUI Panel mask feature (ex: for disabling all activities on a panel)
Post by: aswzen on December 02, 2015, 07:15:01 PM
ok i think its a better idea to put showMask method in next version :)


Title: Re: easyUI Panel mask feature (ex: for disabling all activities on a panel)
Post by: mapner on December 09, 2015, 10:53:59 AM

https://code.google.com/p/jquery-loadmask/


Title: Re: easyUI Panel mask feature (ex: for disabling all activities on a panel)
Post by: isgbuddy on December 15, 2015, 12:58:40 AM
ok i think its a better idea to put showMask method in next version :)
I find a good tips for your need. You can use
Code:
			$.messager.progress({
  title:'your title',
  msg:'Processing ...'
});    

$.messager.progress('bar').css('display','none'); // hide progress bar



Title: Re: easyUI Panel mask feature (ex: for disabling all activities on a panel)
Post by: aswzen on December 16, 2015, 01:16:24 AM
im asking for builtin panel mask..
not extending other widget or using any 3rd party javascript plugin..

thank you