Problem with vaadin-grid


Hi, I try to do the HTML vaading grid Basic Binding : https://vaadin.com/elements/vaadin-grid/html-examples/grid-basic-demos
But when i open my polymer serve doesn’t see the data.

My document html is this:

37811.png

Just a guess, but I think you should define

users

as a property to be able to bind it. I think the list of users will never be written to the property, as there is none, and therefore Grid won’t get the values either. Add

users

in the

properties()

, just like you have

prop1

there.

If it doesn’t help, I’d suggest debugging it a little to locate the problem better. See when the data is written in the property, try to put it on the screen without a grid, as raw json only etc.