New to KendoReactStart a free 30-day trial

A specialized version of useRemoteDataSource tailored for working with OData services. It automatically handles the construction of OData queries and the processing of OData responses.

Definition

Package:@progress/kendo-react-data-tools

Syntax:

tsx
interface Product {
  ProductID: number;
  ProductName: string;
  UnitPrice: number;
}

const dataSource = useODataDataSource<Product>({
  take: 10,
  skip: 0,
  transport: {
    read: {
      url: 'https://demos.telerik.com/service/v2/odata/Products'
    }
  },
  schema: {
    model: {
      id: 'ProductID'
    }
  }
});
In this article
Definition
Not finding the help you need?
Contact Support