Hi i have a quick question about the custom pagination docs in angular smart table, it appears that on your site it is currently broken. I did at one point develop a custom pagination like this before
<nav ng-if="pages.length >= 2">
<ul class="pagination">
<li><a ng-click="selectPage(1)">First</a>
</li><li><a ng-click="selectPage(currentPage - 1)"><</a>
</li><li><a> {{currentPage}} of {{numPages}}</a>
</li><li><a ng-click="selectPage(currentPage + 1)">></a>
</li><li><a ng-click="selectPage(numPages)">Last</a></li>
</ul>
</nav>
getSelectedRows = function() {
var selected;
return selected = $scope.rowCollection.filter(function(item) {
if (item.isSelected === true) {
return logger.debug('selected ' + item);
}
});
};
st-set-sort
but found it in the source code after you mentioned it. looks like that's exactly what I need. Regarding the plnkr, it looks like the result is still sorting:hello
Hello
Hfllo
Hëllo
hello Hello Hëllo Hfllo