hi
my problem is that when i use ui-sref="" my html button ui changed position and dont work completly
this is the picture when i didnet use ui-sref
and this is when i use ui-sref
and other problem when i use ui-sref in ion-item is that when click on RED cart icon it goto ui-sref url
and this is my code
<ion-view>
<ion-nav-title>browse product</ion-nav-title>
<ion-content>
<ion-refresher pulling-text="Refresh" on-refresh="doRefresh()"> </ion-refresher>
<ion-list>
<ion-item class="item-thumbnail-left item-button-right" ng-repeat="product in products" ui- sref="app.product({productID: product.id})">
<img ng-src="{{product.featured_src}}" />
<h2> {{product.title}} </h2>
<p> {{product.categories[0]}} <br/> <span ng-bind-html="product.price_html"> </span> </p>
<button class="button button-assertive" ng-click="addToCart(product)">
<i class="icon ion-android-cart"> </i>
</button>
</ion-item>
</ion-list>
<ion-infinite-scroll on-infinite="loadMore()" ng-if="canLoadMore" immediate-check="false"></ion-infinite-scroll>
</ion-content>