I have no problems displaying my model in a View using Polymer, for example:
<paper-icon-item>
<iron-icon icon="communication:phone" item-icon></iron-icon>
<paper-item-body two-line>
<div>@Model.PhoneNumber</div>
<div secondary>Phone Number</div>
</paper-item-body>
</paper-icon-item>
but I just do not get the bindings right for input
//this does not work
<paper-input label="Phone Number">@Model.PhoneNumber</paper-input>
//nor this
<paper-input is="iron-input" label="Phone Number">@Model.PhoneNumber</paper-input>
//even when I try adding this...
<script>
Polymer({
})
</script>
...plus a myriad of other attempts. The bindings are not working one or two way (I cannot display existing data or update data)
The controls look correct, they are very cool, animated, etc