Bind
methodsBinds a HTML View to a View-Model and initializes Kendo UI widgets from DOM elements based on data-role attributes, similar to kendo.init().
Model View ViewModel (MVVM) is a design pattern which helps developers separate the Model from the View. The View-Model part of MVVM is responsible for exposing the data objects from the Model in such a way that those objects are easily consumed in the View.
Parameters:elementString|jQuery|Element
viewModelObject|kendo.data.ObservableObject
The root element(s) from which the binding starts. Can be a valid jQuery string selector, a DOM element or a jQuery object. All descendant elements are traversed.
The View-Model which the elements are bound to. Wrapped as an instance of kendo.data.ObservableObject if not already.