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.
0 commit comments