Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

which is better ng-table or ng-grid?

Tags:

angularjs

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"?

like image 409
Hasib Siddiqui Avatar asked Mar 31 '15 09:03

Hasib Siddiqui


People also ask

Which grid is best for angular?

Generic UI Data Grid is one of the best free grid library. It greatly integrates with the best javascript framework there is Angular. All of that makes this library a great free to use Angular data table component. Generic UI datagrid has been released under the terms of the MIT License.

What is NG grid in angular?

ng-grid is Angular's native implementation of the Grid. There are many plugins from third-parties that can be integrated into AngularUI Pages, but ng-grid exists inside the AngularJs framework and is very rich in functionality and compatibility. Let us create a sample ng-grid and understand how ng-grid works.


1 Answers

Difference for Better Choice

  • ng-grid
  • ng-table

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!

like image 52
Zeeshan Hassan Memon Avatar answered Oct 25 '22 17:10

Zeeshan Hassan Memon