Duration: 19:34 min
Summary: In this video, we will discuss how to create a grid. We know that grids are very powerful because we can use them to display sets of data coming from a local or remote location. We create a grid by simply starting with a div in the html. We follow that with a kendoGrid() function in the JavaScript code. As we always do, we indicate the properties that we need in the initialization list. Here, we are interested in the columns that we need to provide and the data source to indicate the rows of data that will be shown. After we are done with the columns and the data, we specify the properties such as the pageable, groupable, sortable, scrollable, and navigatable. We will see that we can select multiple rows and cells. We will also notice that the pageable properties are very powerful.