DevExtreme jQuery/JS - OData

To access an OData service, implement the ODataStore: specify the url of an OData entity collection, the key property, and the OData version. You can also handle data-related events:

index.js
  • $(function() {
  • var productsStore = new DevExpress.data.ODataStore({
  • url: "https://js.devexpress.com/Demos/DevAV/odata/Products",
  • key: "Product_ID",
  • version: 3,
  • onLoaded: function() {
  • // Event handling commands go here
  • }
  • });
  •  
  • $("#dataGridContainer").dxDataGrid({
  • dataSource: productsStore
  • });
  • });

Data from the ODataStore can be shaped (filtered, sorted, grouped, etc.) in the DataSource.

The following example declares an ODataStore, wraps it in a DataSource, and binds the DataGrid UI component to this DataSource:

index.js
  • $(function() {
  • var productsStore = new DevExpress.data.ODataStore({
  • // ...
  • });
  •  
  • var productsDataSource = new DevExpress.data.DataSource({
  • store: productsStore,
  • sort: "Product_Name"
  • });
  •  
  • $("#dataGridContainer").dxDataGrid({
  • dataSource: productsDataSource
  • });
  • });

A 1-Click Solution for CRUD Web API Services with Role-based Access Control via EF Core

If you target .NET for your backend API, be sure to check out Web API Service and register your free copy today. The Solution Wizard scaffolds an OData v4 Web API Service (.NET 6+) with integrated authorization & CRUD operations powered by EF Core ORM. You can use OAuth2, JWT or custom authentication strategies alongside tools like Postman or Swagger (OpenAPI) for API testing. The built-in Web API Service also filters out secured server data based on permissions granted to users. Advanced/enterprise functions include audit trail, endpoints to download reports, file attachments, check validation, obtain localized captions, etc.

To use the free Solution Wizard (which creates the Web API Service), run the Universal Component Installer from the DevExpress Download Manager and use our predefined template in Visual Studio 2022+.

Read Tutorial | View Examples: JavaScript (DevExtreme) & JavaScript (Svelte) | Watch Videos