New to KendoReactLearn about KendoReact Free.

Grid

Represents the KendoReact Grid component.

A Functional Component.

jsx
const App = () => {
    const [data, setData] = useState([
        { foo: 'A1', bar: 'B1' },
        { foo: 'A2', bar: 'B2' },
        { foo: 'A3', bar: 'B2' }
    ]);

    return (
        <Grid data={data} reorderable={true}>
            <GridColumn field="foo" />
            <GridColumn field="bar" />
        </Grid>
    );
};

export default App;
NameTypeDefaultDescription

props

GridProps intersected with RefAttributes<undefined>

The props of the Grid component.

Not finding the help you need?
Contact Support