How to show loading/busy icon in smartGWT while some operation is going on?
In gwtEXT there was mask/unmask call to show loading message.
Thanks in advance,
Vikas
In gwtEXT there was mask/unmask call to show loading message.
Code:
final ExtElement element = Ext.get("mainPanel"); if(!state) element.mask("Fetching data..."); else element.unmask();
Vikas
Comment