Local Data Operations
The KendoReact Grid enables you to page, filter, sort and group the data locally.
Setup
To setup local data operations:
-
Set a value inside the state that will hold the current paging, filtering, sorting and grouping parameters. Not all are required, only the ones used in the Grid instance.
const dataState = { sort: [{ field: "code", dir: "asc" }], take: 10, skip: 0 }; state = { dataState: dataState };
-
Pass the current data state to the Grid.
<Grid {...this.state.dataState}
-
Use the
onDataStateChange
to handle all data operations from a single place. The event data provides the combine state of the Grid including paging, sorting, filtering and grouping parameters. With server operations, these parameters can be sent to the server to process the data there.onDataStateChange={(e)=>{ this.setState({dataState: e.dataState}) }}
-
Use the
process
method of theDataQuery
library which will automatically process the data based on the current data state.<Grid data={process(products, this.state.dataState)}
Demo
The following example shows the Grid with paging, sorting and filtering enabled: