I am not able to bind the title of the toolbar to my controller. i am using v2.0.0-rc.5
example code
<ons-template id="section.html">
<ons-page ng-controller="SectionController as secCtrl">
<ons-toolbar title="{{secCtrl.SelectedFamily}}">
<div class="left">
<ons-toolbar-button ng-click="mySplitter.left.open()">
<ons-icon icon="md-menu"></ons-icon>
</ons-toolbar-button>
</div>
</ons-toolbar>
<p style="text-align: center; opacity: 0.6; padding-top: 20px;">
{{secCtrl.SelectedFamily}}
</p>
</ons-page>
</ons-template>
The value is displayed propelry inisde pages paragraph but it is empty on the title. Any ideas?