I want to add a simple status message in status bar when i click on folder and tree loads its children. Also i would like to add mask too.
I think that there is a easy solution, bet i can't google it.
I want to add a simple status message in status bar when i click on folder and tree loads its children. Also i would like to add mask too.
I think that there is a easy solution, bet i can't google it.
Put a Ext.Toolbar.TextItem on the toolbar:
And change it's text:Code:bbar: [{ xtype: 'tbtext', id: 'mymessage' }]
Masking:Code:Ext.getCmp('mymessage').setText('Status: Done');
Code:tree.getEl().mask('Please wait...'); ... tree.getEl().unmask();