Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Table support for AngularJS Material

I would like to create a table using Angular Material.

I am not able to find a table implementation from the documentation. https://material.angularjs.org/latest/

However, I found other implementations. I am confused. Are these implementations from Google? Can they work with Angular Material?

https://github.com/daniel-nagy/md-data-table

http://codepen.io/jbltx/details/WbdRRb

var app = angular.module('StarterApp', ['ngMaterial']); 
like image 845
guagay_wk Avatar asked Nov 15 '15 07:11

guagay_wk


People also ask

Can I use angular material with AngularJS?

The AngularJS Material library is a mature and stable product that is ready for production use. Developers should note that AngularJS Material works only with AngularJS 1.

Which is better angular material or bootstrap?

Angular Material and Flex Layout are absolutely better than bootstrap. But that doesn't mean that you should not use bootstrap, but you may consider utilizing both the libraries.


1 Answers

There is no official angular material table yet, But there are some folks who created some on their own to fill that gap. I really suggest this one: https://github.com/iamisti/mdDataTable

Since this has been implemented exactly the way it is written in the specification of google material.

like image 96
Iamisti Avatar answered Oct 21 '22 09:10

Iamisti