Hey Ionic Community,
in my small proof-of-concept project I have a view that starts with
<ion-view view-title="{{ state.Name }}">
This parameter is set in the controller and is correctly shown when I first load the page.
However, when I (re-)load the same view with
$ionicHistory.nextViewOptions({disableBack: true}); $state.go('app.run', {instance_id: id}, {reload: true});
the view renders correctly except for the title, the expression of which is not defined.
Can anyone explain this or point me towards a solution?
Any hint would be greatly appreciated
Shi