Hi! Is there a posibility that the button in ion-list to work? If I press on it, I only check/uncheck the checkbox.So what I want to happen is to execute function() if I press the button.
<ion-list class="list">
<ion-item class="item item-checkbox item-button-right">
<label class="checkbox">
<input type="checkbox" ng-model="item.checked">
</label>
Some text . . .
<button class="button button-positive" ng-click="function()">
<i class="icon ion-ios7-telephone"></i>
</button>
</ion-item>
</ion-list>