Will this (dynamically changing the title) be fixed anytime soon? I know one shouldn't use Ext.navigation.Bar directly, but it used to be possible to do "NavigationView.getNavigationBar().setTitle('something')" (where NavigationView is naturally an instance of said class) - the functions still exist, but apparently do nothing.
I am also interested in updating the title after a view is displayed for the first time. In my scenario, my NavigationView contains a List of values, and I would like the title to reflect to sum of those values. The values can and do change while the view is being displayed (by updating the underlying Store), and I would like to be able to update the title to reflect the new sum.
I understand that there is no easy way to do this currently. I have looked into the code for the NavigationView/NavigationBar, and haven't found a good way to achieve this behavior. Is it something that is on the road map to be added to the NavigationView? I would think that if the NavigationView takes its title from the currently displayed view, it should also be able to monitor that view to see if the title changes and update itself accordingly.