You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Syncfusion ODataV4 adaptor extends support for calling customized URLs to accommodate data retrieval and CRUD actions as per your application's requirements. However, when utilizing a custom URL with the ODataV4 adaptor, it's essential to modify the routing configurations in your application's route configuration file to align with your custom URL. You can invoke the custom URL by the following methods in the Datamanager
552
+
553
+
**Configuring Custom URLs**
554
+
555
+
To work with custom URLs for CRUD operations in the Syncfusion Grid, you can use the following properties:
556
+
557
+
* insertUrl: Specifies the custom URL for inserting new records.
558
+
* removeUrl: Specifies the custom URL for deleting records.
559
+
* updateUrl: Specifies the custom URL for updating records.
560
+
* batchUrl: Specifies the custom URL for batch editing operations.
561
+
562
+
> Ensure that the routing configurations on the server-side are properly updated to handle these custom URLs.
563
+
564
+
The following code example describes the above behavior.
> For optimal performance, especially when dealing with lazy loading grouping, it is recommended to perform sorting after the grouping action.
103
+
102
104
## Lazy load grouping with infinite scrolling
103
105
104
106
Lazy loading grouping with infinite scrolling is a valuable feature in scenarios where there is a need to present grouped data, efficiently handle large datasets, and ensure a seamless experience. This feature enables loading data on demand as the interface is interacted with, ensuring optimal performance and responsiveness while effectively managing and presenting large grouped datasets
0 commit comments