Skip to content Skip to sidebar Skip to footer

Knockout Unable To Process Binding In A Specific Function

I am new to knockout and have a problem with a particular binding. I am using SharePoint to get user properties, display them and save it to a sharepoint list. I have other binding

Solution 1:

As it is, you're trying to bind entity, but entity is a property of an EntityRow and your scope is still Model. It's pretty clear that you want your table to display EntityRows, but you haven't set that up. You should have:

<tr data-bind="foreach: EntityRows">

Post a Comment for "Knockout Unable To Process Binding In A Specific Function"