How to load manually data in kendo ui grid

c#, grid, kendo-ui

Solution

Disable auto-loading from the grid's data source by setting the grid's `autoBind` property to `false` and then call `read()` on the data source when the button is clicked.

Problem

I have a kendo ui grid. I want to load my grid manually. For example when my page loaded, the grid not loading, but when I click a button, data load in grid. How to I can do this? Thanks.

Original source