New to KendoReact? Learn about KendoReact Free.
GridNoRecords
Represents the GridNoRecords component. The component is rendered when the data
property of the Grid is empty or null
.
jsx
const App = () => {
return (
<Grid data={[]}>
<GridNoRecords>There is no data available</GridNoRecords>
<GridColumn field="id" />
<GridColumn field="name" />
</Grid>
);
};
export default App;
Name | Type | Default | Description |
---|---|---|---|
props |
|
The props of the GridNoRecords component. |