Skip to content

Commit

Permalink
Fix ASP links in JS demo descriptions (#3144)
Browse files Browse the repository at this point in the history
* Fix ASP links in JS demo descriptions

* aspnetcore -> ASPNetCore
  • Loading branch information
vladaskorohodova authored Feb 23, 2024
1 parent f0d9b98 commit 2dc2d35
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions JSDemos/Demos/DataGrid/RemoteReordering/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ When a row is dropped, the [onReorder][0] event handler is called. Use it to upd
[0]: /Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/rowDragging/#onReorder
[1]: /Documentation/ApiReference/Data_Layer/CustomStore/Configuration/#update
[2]: /Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/rowDragging/#allowReordering
[3]: /Demos/WidgetsGallery/Demo/DataGrid/RemoteReordering/NetCore/Light/
[4]: /Demos/WidgetsGallery/Demo/DataGrid/RemoteReordering/Mvc/Light/
[3]: https://demos.devexpress.com/ASPNetCore//Demo/DataGrid/RemoteReordering/
[4]: https://demos.devexpress.com/ASPNetMvc/Demo/DataGrid/RemoteReordering/
[5]: /Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/rowDragging/
[6]: /Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/rowDragging/#dropFeedbackMode
2 changes: 1 addition & 1 deletion JSDemos/Demos/DataGrid/SignalRService/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ This example demonstrates real-time data update in a **DataGrid** bound to a <a

The **CustomStore** fetches the remote dataset at launch and keeps its local copy. Whenever the remote dataset changes, the server calls a client-side function that updates the local copy of the dataset (`updateStockPrices` in this demo). This function uses the store's [push(changes)](/Documentation/ApiReference/Data_Layer/CustomStore/Methods/#pushchanges) method.

For server-side configuration, refer to the [ASP.NET MVC version of this demo](/Demos/WidgetsGallery/Demo/DataGrid/SignalRService/Mvc/Light/).
For server-side configuration, refer to the [ASP.NET MVC version of this demo](https://demos.devexpress.com/ASPNetMvc/Demo/DataGrid/SignalRService).

For more information about integration with push services, refer to the following help topic: [Integration with Push Services](/Documentation/Guide/Data_Binding/Data_Layer/#Data_Modification/Integration_with_Push_Services).

Expand Down
2 changes: 1 addition & 1 deletion JSDemos/Demos/DataGrid/WebAPIService/description.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method which is part of the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `DataGridWebApiController.cs` tab in the [ASP.NET MVC version of this demo](/Demos/WidgetsGallery/Demo/DataGrid/WebAPIService/Mvc/Light/).
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method which is part of the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `DataGridWebApiController.cs` tab in the [ASP.NET MVC version of this demo](https://demos.devexpress.com/ASPNetMvc/Demo/DataGrid/WebAPIService).

To notify the DataGrid that data is processed on the server, set the [remoteOperations](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/remoteOperations/) property to **true**.

Expand Down
2 changes: 1 addition & 1 deletion JSDemos/Demos/List/WebAPI/description.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method which is part of the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `ListDataController.cs` tab in the [ASP.NET MVC version of this demo](/Demos/WidgetsGallery/Demo/List/WebApi/Mvc/Light/).
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method which is part of the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `ListDataController.cs` tab in the [ASP.NET MVC version of this demo](https://demos.devexpress.com/ASPNetMvc/Demo/List/WebAPI).

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

Expand Down
2 changes: 1 addition & 1 deletion JSDemos/Demos/Scheduler/SignalRService/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Follow the steps below to implement this functionality. Note again that this dem

1. When a push notification is received, call the store's [push(changes)](/Documentation/ApiReference/Data_Layer/CustomStore/Methods/#pushchanges) method to update the store's data (see the `connection.on` event handlers).

For server-side configuration, refer to the [ASP.NET MVC version of this demo](/Demos/WidgetsGallery/Demo/Scheduler/SignalRService/Mvc/Light/).
For server-side configuration, refer to the [ASP.NET MVC version of this demo](https://demos.devexpress.com/ASPNetMvc/Demo/Scheduler/SignalRService).

For more information about integration with push services, refer to the following help topic: [Integration with Push Services](/Documentation/Guide/Data_Binding/Data_Layer/#Data_Modification/Integration_with_Push_Services).
2 changes: 1 addition & 1 deletion JSDemos/Demos/Scheduler/WebAPIService/description.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method which is part of the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `SchedulerDataController.cs` tab in the [ASP.NET MVC version of this demo](/Demos/WidgetsGallery/Demo/Scheduler/WebAPIService/Mvc/Light/).
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method which is part of the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `SchedulerDataController.cs` tab in the [ASP.NET MVC version of this demo](https://demos.devexpress.com/ASPNetMvc/Demo/Scheduler/WebAPIService).

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

Expand Down
2 changes: 1 addition & 1 deletion JSDemos/Demos/TreeList/LoadDataOnDemand/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Set the **remoteOperations**.[filtering](/Documentation/ApiReference/UI_Componen
3. **Specify the data field that defines whether the node has children**
Use the [hasItemsExpr](/Documentation/ApiReference/UI_Components/dxTreeList/Configuration/#hasItemsExpr) property to set this data field.

Server-side implementation is available in the [ASP.NET Core](/Demos/WidgetsGallery/Demo/DataGrid/RemoteReordering/NetCore/Light/) and [ASP.NET MVC](/Demos/WidgetsGallery/Demo/DataGrid/RemoteReordering/Mvc/Light/) versions of this demo under the `TreeListDataController.cs` tab.
Server-side implementation is available in the [ASP.NET Core](https://demos.devexpress.com/ASPNetCore/Demo/TreeList/LoadDataOnDemand/) and [ASP.NET MVC](https://demos.devexpress.com/ASPNetMvc/Demo/TreeList/LoadDataOnDemand) versions of this demo under the `TreeListDataController.cs` tab.

[note]

Expand Down
2 changes: 1 addition & 1 deletion JSDemos/Demos/TreeList/WebAPIService/description.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method from the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `TreeListTasksController.cs` tab in the [ASP.NET MVC](/Demos/WidgetsGallery/Demo/TreeList/WebAPIService/Mvc/Light/) and [ASP.NET Core](/Demos/WidgetsGallery/Demo/TreeList/WebAPIService/NetCore/Light/) versions of this demo.
To access a Web API service from the client, use the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/client-side-with-jquery.md#api-reference" target="_blank">createStore</a> method from the <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data#devextreme-aspnet-data" target="_blank">DevExtreme.AspNet.Data</a> extension. This extension also allows you to process data for DevExtreme components <a href="https://github.com/DevExpress/DevExtreme.AspNet.Data/blob/master/docs/server-side-configuration.md" target="_blank">on the server</a>. The server-side implementation is available under the `TreeListTasksController.cs` tab in the [ASP.NET MVC](https://demos.devexpress.com/ASPNetMvc/Demo/TreeList/WebAPIService) and [ASP.NET Core](https://demos.devexpress.com/ASPNetCore/Demo/TreeList/WebAPIService/) versions of this demo.

To notify the TreeList that data is processed on the server, set the [remoteOperations](/Documentation/ApiReference/UI_Components/dxTreeList/Configuration/remoteOperations/) property to **true**.

Expand Down

0 comments on commit 2dc2d35

Please sign in to comment.