Posts

Showing posts from December, 2012

AngularJS Paginator

So today I've finished my first AngularJS directive. And what can I say, I'm quite impressed, way to go Google team ! What I ended up with is a component that can paginate through any REST database listing by placing a single line of HTML on your page.  http://github.com/MarianVasile/AngularJS-Paginator  AngularJS Paginator author: Marian Vasile, Dec 2012 This component paginates an ajax database service, with a single HTML line, and some CSS. Steps for integration: In your listing HTML file add this line to the top and the bottom of the actual listing div or table <paginator current-page="{{ listing.current_page }}" total_pages="{{ listing.total_pages }}" call="searchListing" wclass="current_page"></paginator> Adjust the code in your Angular controller for the paginator scope (the same scope as the listing itself) to pass the page to $resource - see the repapp-controller.js for instructions On the ser...