Ion-nav-buttons not visible after updating to beta 14

Hi, I updated to beta 14 and now my ion-nav-buttons are not visible anymore. Here is my implementation:

<ion-view title="{{title}}">
  <ion-content>
      ...
  </ion-content>
</ion-view>


<ion-nav-buttons side="left"> 
   <button class="button button-clear button-positive" ng-click="enableEdit()">{{EditText}}</button>
</ion-nav-buttons>
<ion-nav-buttons side="right"> 
    <button class="button button-clear button-positive" ng-click="showPopup()">Add</button>
</ion-nav-buttons>

do I have to change anything?

I found the Bug: I have to add it into the ion-view tags.

1 Like

Sry where? Could you give me an example?

I have to write it this way:

<ion-view title="{{title}}">
  <ion-content>
      ...
  </ion-content>

<ion-nav-buttons side="left"> 
   <button class="button button-clear button-positive" ng-click="enableEdit()">{{EditText}}</button>
</ion-nav-buttons>
<ion-nav-buttons side="right"> 
    <button class="button button-clear button-positive" ng-click="showPopup()">Add</button>
</ion-nav-buttons>
</ion-view>

I used the wrong word, it’s not a bug. Its rather a other code syntax

1 Like

Is this broken? i’m having an issue where this worked before latest release.

we have a view and then load a template and in this template have buttons to display but they no longer work.

<ion-view>
    <div ng-include="getPage()"></div>
</ion-view>

in the template

<ion-nav-buttons side="right">
    <button class="button button-icon icon ion-ios-heart"></button>
</ion-nav-buttons>

figured issue,

was on a second template included. so I have a template with include and then on that have a template included and it wouldn’t work. only the first nested template did <ion-nav-buttons show