I have a group of panels( three for now ) which are all the instances of the same view. So they have a lot things in common,like toolbar and the buttons on them.
I define toolbars' and buttons' text when i create them and the text comes from a variable, like this:
App.views.CommonView = Ext.extend(Ext.Panel, {
initComponent: function() {
this.backBtn = new Ext.Button({
text: globalVar,
handler: this.onBackTap,
scope: this
});
this.toolbar = new Ext.Toolbar({
title: this.title,
items: [this.backBtn]
});
}
});
anInstanceView: new App.views.CommonView({
title: globalVar
});
anotherInstanceView: new App.views.CommonView({
title: globalVar
});
As you can see, the button text and the toolbar title relies on the globalVar.
I want to update those texts all together when i change this golbalVar's value
globalVar = "new value";
// Somehow update all the button and toolbar texts on all three panels.
I don't want to do this manually like;
App.views.anInstanceView.getDockedItems[0].setTitle(globalVar);
and repeat it for all the panels. There needs to be a cleaner solution, a method to update the ui.
What could be that cleaner solution? Thanks.