New to KendoReactLearn about KendoReact Free.

GridNoRecords

Represents the GridNoRecords component. The component is rendered when the data property of the Grid is empty or null.

A Functional Component.

jsx
const App = () => {
    return (
        <Grid data={[]}>
            <GridNoRecords>There is no data available</GridNoRecords>
            <GridColumn field="id" />
            <GridColumn field="name" />
        </Grid>
    );
};

export default App;
NameTypeDefaultDescription

props

GridNoRecordsProps

The props of the GridNoRecords component.

Not finding the help you need?
Contact Support