From 0de454377d8dff591b7bb662865ecd0f1c245927 Mon Sep 17 00:00:00 2001 From: Gayathri4135 Date: Mon, 7 Apr 2025 12:31:23 +0530 Subject: [PATCH 1/2] Documentation: Attached the Adaptors sample link --- .../connecting-to-adaptors/odatav4-adaptor.md | 2 ++ .../connecting-to-adaptors/remote-save-adaptor.md | 4 +++- .../EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md | 2 ++ .../connecting-to-adaptors/web-api-adaptor.md | 6 +++++- .../connecting-to-adaptors/web-method-adaptor.md | 4 +++- 5 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md index 83e3925934..8440c5ef9f 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md @@ -556,6 +556,8 @@ public IActionResult Delete(int key) ``` ![ODataV4Adaptor-Delete-record](../images/adaptors/ODataV4Adaptor/odatav4-adaptor-delete-record.png) +> You can find the complete sample for the ODataV4Adaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/ODataV4Adaptor_EJ2Core) link. + ## Odata with custom url 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`. diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md index f4c168cd59..ba452f7815 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md @@ -407,4 +407,6 @@ app.MapControllers(); **Step 7:** Run the Project: -Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. \ No newline at end of file +Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. + +> You can find the complete sample for the RemoteSaveAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/RemoteSaveAdaptor_EJ2Core) repository. \ No newline at end of file diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md index b9368bae49..fec16cd015 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md @@ -617,6 +617,8 @@ public void Remove([FromBody] CRUDModel deletedRecord) ![UrlAdaptor CRUD operations](../images/adaptors/url-adaptors/adaptor-crud-operation.gif) +> You can find the complete sample for the UrlAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/UrlAdaptor_EJ2Core) link. + **Single method for performing all CRUD operations** Using the `crudUrl` property, the controller action mapping URL can be specified to perform all the CRUD operation at server-side using a single method instead of specifying separate controller action method for CRUD (insert, update and delete) operations. diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md index 7d9511c6a4..b85378ae77 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md @@ -245,6 +245,8 @@ app.MapControllers(); Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. +> You can find the complete sample for the WebApiAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebApiAdaptor_EJ2Core) link. + ![WebApiAdaptor](../images/adaptors/webapiAdaptors/adaptor.gif) ## Handling Searching Operation @@ -581,4 +583,6 @@ public void Delete(int key) } ``` -![WebApiAdaptor CRUD operations](../images/adaptors/webapiAdaptors/adaptor-crud-operation.gif) \ No newline at end of file +![WebApiAdaptor CRUD operations](../images/adaptors/webapiAdaptors/adaptor-crud-operation.gif) + +You can find the complete sample for the WebApiAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebApiAdaptor_EJ2Core) link. \ No newline at end of file diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md index 7fc0912857..25fd3881ef 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md @@ -778,4 +778,6 @@ if (batchOperation.deleted != null) } ``` -![WebMethodAdaptor Batch Editing](../images/adaptors/url-adaptor-batch-editing.gif) \ No newline at end of file +![WebMethodAdaptor Batch Editing](../images/adaptors/url-adaptor-batch-editing.gif) + +> You can find the complete sample for the WebMethodAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebMethodAdaptor_Core) link. \ No newline at end of file From fb8902b851cabb45ef1367a408049ed39091d33e Mon Sep 17 00:00:00 2001 From: Gayathri4135 Date: Tue, 22 Apr 2025 19:16:54 +0530 Subject: [PATCH 2/2] Update the md file --- .../EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md | 2 +- .../connecting-to-adaptors/remote-save-adaptor.md | 2 +- .../grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md | 2 +- .../EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md | 2 +- .../connecting-to-adaptors/web-method-adaptor.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md index 8440c5ef9f..424295d215 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md @@ -556,7 +556,7 @@ public IActionResult Delete(int key) ``` ![ODataV4Adaptor-Delete-record](../images/adaptors/ODataV4Adaptor/odatav4-adaptor-delete-record.png) -> You can find the complete sample for the ODataV4Adaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/ODataV4Adaptor_EJ2Core) link. +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/ODataV4Adaptor_EJ2Core). ## Odata with custom url diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md index ba452f7815..a663d85a18 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/remote-save-adaptor.md @@ -409,4 +409,4 @@ app.MapControllers(); Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. -> You can find the complete sample for the RemoteSaveAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/RemoteSaveAdaptor_EJ2Core) repository. \ No newline at end of file +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/RemoteSaveAdaptor_EJ2Core). \ No newline at end of file diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md index fec16cd015..c752e65ff4 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/url-adaptor.md @@ -617,7 +617,7 @@ public void Remove([FromBody] CRUDModel deletedRecord) ![UrlAdaptor CRUD operations](../images/adaptors/url-adaptors/adaptor-crud-operation.gif) -> You can find the complete sample for the UrlAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/UrlAdaptor_EJ2Core) link. +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/UrlAdaptor_EJ2Core). **Single method for performing all CRUD operations** diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md index b85378ae77..2a65a960e1 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-api-adaptor.md @@ -245,7 +245,7 @@ app.MapControllers(); Run the project in Visual Studio, and the Syncfusion ASP.NET Core Grid will successfully fetch data from the API service. -> You can find the complete sample for the WebApiAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebApiAdaptor_EJ2Core) link. +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebApiAdaptor_EJ2Core). ![WebApiAdaptor](../images/adaptors/webapiAdaptors/adaptor.gif) diff --git a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md index 25fd3881ef..6b7643ca4a 100644 --- a/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md +++ b/ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/web-method-adaptor.md @@ -780,4 +780,4 @@ if (batchOperation.deleted != null) ![WebMethodAdaptor Batch Editing](../images/adaptors/url-adaptor-batch-editing.gif) -> You can find the complete sample for the WebMethodAdaptor in [GitHub](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebMethodAdaptor_Core) link. \ No newline at end of file +> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/Binding-data-from-remote-service-to-asp.net-core-data-grid/tree/master/WebMethodAdaptor_Core). \ No newline at end of file