GridNoRecords
Component
Represents the GridNoRecords component. The component is rendered when the data property of the Grid is empty or null.
Definition
Package:@progress/kendo-react-grid
Syntax:
jsx
const App = () => {
return (
<Grid data={[]}>
<GridNoRecords>There is no data available</GridNoRecords>
<GridColumn field="id" />
<GridColumn field="name" />
</Grid>
);
};
export default App;
Properties
displayName
string
The props of the GridNoRecords component.