Reputation: 343
I am new to web development. For my web page development, first i came across JQuery, it was pretty amazing. Then i found a plugin for tables at https://www.datatables.net. That solved most of the data binding, searching and sorting.
But later when i discovered AngularJS for MVC development, I also found Bootstrap to go well with this MVC framework.
The question I have: are there any table pagination for bootstrap (3.3.5 preferably) ? Because i prefer to use AngularJS for binding, filtering and sorting?
Upvotes: 0
Views: 1553
Reputation: 428
//Updated the link. You can use bootstrap table:- http://bootstrap-table.wenzhixin.net.cn/
Upvotes: 2
Reputation: 1101
you can also use Smart Table ref:-
http://lorenzofox3.github.io/smart-table-website/
Upvotes: 1
Reputation: 4480
You should look into ui-grid if you are looking for something with similar functionality to datatables (though ui-grid has many more features). UI-Grid can be customized to fit the Bootstrap theme. The relevant section to pagination can be found here.
There's also ui-bootstrap if you are just looking for some pagination components within the bootstrap template that play nice with AngularJS.
Good luck!
Upvotes: 1