Menu
  • HOME
  • TAGS

KendoUI - UI not refreshed after extracting repeating functions

javascript,kendo-ui,observable,kendo-mvvm,kendo-observable

The source binding only renders the new object that you add to the ObservableArray because the change event which notifies the binding only indicates that a new item was added. You can force the source binding to re-render the whole view by triggering a change event manually: var CoolObservableArray =...