Reputation: 1
I have created a status bar in my project using ExtJS. I want to change the text after clicking another tab. I'd also like to update it based on a time interval. How can I do this using ExtJS?
Upvotes: 0
Views: 657
Reputation: 20431
If you're using the StatusBar ux you probably want something like:
myStatusBar.setStatus({
text: 'Whatever',
clear: true
});
Upvotes: 2