i want to reload when clicking the href.
<li><a ng-href="#/detailedView">DetailedView</a></li>
so i have added the below method in controller js.
$scope.reloadRoute = function() {
$state.reload();
}
and modified the href like below, but still its not reloading.
<li><a ng-click="reloadRoute()" ng-href="#/detailedView">DetailedView</a></li>
i have tried $route.reload(); as well, but the page is not getting refreshed while clicking the href