Hasib Siddiqui
Hasib Siddiqui

Reputation: 61

which is better ng-table or ng-grid?

I want the table that I show on the client side to be more responsive. Like when I use "ng-table", when viewed on any other device than PC or laptop it seems to be responsive to a limited extent. So should I switch to "ng-grid"?

Upvotes: 6

Views: 7447

Answers (1)

Zeeshan Hassan Memon
Zeeshan Hassan Memon

Reputation: 8325

Difference for Better Choice

Both are good, but implemented differently. Either you pick will probably be more based on personal preference than anything else.

ng-grid is based on SlickGrid which is a pretty high performant data grid, ng-grid is purely Angular. It is highly customiz-able and gets the job done.

ng-table because it is a simpler version of ng-grid and uses tables. It is a very nice little library that allows you to get up and running quickly. It is exactly what you need when you have to render a simple table with Angular.

Happy Helping!

Upvotes: 8

Related Questions