New to Kendo UI for jQuery? Start a free 30-day trial
Data Binding Overview
By default, the Kendo UI Grid for jQuery automatically binds to data.
Immediately after the Grid loads, the DataSource sends a query and the data is loaded to the component. To disable this behavior, set the autoBind
option of the component to false
, as shown below.
js
$("#grid").kendoGrid({
autoBind: false,
// Other configuration.
});
For more information about binding the Grid to data, refer to the articles on:
KB Articles on Binding
- Using Nested Model Properties
- Loading and Appending More Records While Scrolling Down
- Find Out More in the Knowledge Base