guagay_wk
guagay_wk

Reputation: 28088

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']); 

Upvotes: 7

Views: 9374

Answers (1)

Iamisti
Iamisti

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

Related Questions