esvit / ng-table

Simple table with sorting and filtering on AngularJS
http://esvit.github.io/ng-table
BSD 3-Clause "New" or "Revised" License
2.77k stars 851 forks source link

Table header rendering but no data #1023

Closed alphabravo8 closed 6 years ago

alphabravo8 commented 6 years ago

Hi,

Apologies in advance I have read the docs and the previous issues and I still cannot resolve my problem.

I have the following basic ng-table implementation, It is building the headers with filters but I don't get any data?

https://codepen.io/alphabravo8/pen/YEwXrm

Thanks for your help.

alphabravo8 commented 6 years ago

well it seems to be working now, I'm still pretty new to Angular so maybe something basic I missed:

this will not work

`

{{user.name}} {{user.age}}

`

this works:

`

{{user.name}} {{user.age}}

`

I still don't get why I cannot use the full controller name without using a controller Alias but I'll go to the next step...

I'm still really far from what I need to achieve but looking at the demos ng-table has all I need so thanks a lot for the great lib.