extjs startup
extjs startup

Reputation: 1

How can I clear the statusbar text in ExtJS?

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

Answers (1)

Brian Moeskau
Brian Moeskau

Reputation: 20431

If you're using the StatusBar ux you probably want something like:

myStatusBar.setStatus({
    text: 'Whatever',
    clear: true
});

Upvotes: 2

Related Questions