Reputation: 28088
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']);
Upvotes: 7
Views: 9374
Reputation: 1710
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.
Upvotes: 6