Skip to content

Commit 1b6b096

Browse files
committed
Sync with Kendo UI Professional
1 parent c2961ac commit 1b6b096

File tree

22 files changed

+64
-64
lines changed

22 files changed

+64
-64
lines changed

docs-aspnet/html-helpers/data-management/grid/binding/graphql-binding.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The Grid component provides multiple types of server-side binding. Using its Dat
1313

1414
## What is GraphQL?
1515

16-
GraphQL is a query language for APIs and a runtime for fulfilling client (browser) queries by returning existing data. It offers a complete and understandable description of the data and provides the API clients exactly with the specific data they requested.
16+
GraphQL is a query language for APIs and a runtime for fulfilling client (browser) queries by returning existing data. It offers a complete and understandable description of the data and provides the API clients exactly with the specific data they requested.
1717

1818
As an alternative to REST, GraphQL allows developers to make requests to fetch data from multiple data sources with a single API call. GraphQL queries access not just the properties of one resource but also smoothly follow references between them.
1919

@@ -64,25 +64,25 @@ The GraphQL service URL endpoints are referenced in the `.Custom() -> Transport`
6464
})
6565
.Transport(transport => transport
6666
.Create(r => r
67-
.Url("https://demos.telerik.com/aspnet-core/service/api/graphql/")
67+
.Url("https://demos.telerik.com/service/v2/graphql/")
6868
.ContentType("application/json")
6969
.Type(HttpVerbs.Post)
7070
.Data("additionalDataOnCreate")
7171
)
7272
.Read(r => r
73-
.Url("https://demos.telerik.com/aspnet-core/service/api/graphql/")
73+
.Url("https://demos.telerik.com/service/v2/graphql/")
7474
.ContentType("application/json")
7575
.Type(HttpVerbs.Post)
7676
.Data("additionalDataOnRead")
7777
)
7878
.Update(r => r
79-
.Url("https://demos.telerik.com/aspnet-core/service/api/graphql/")
79+
.Url("https://demos.telerik.com/service/v2/graphql/")
8080
.ContentType("application/json")
8181
.Type(HttpVerbs.Post)
8282
.Data("additionalDataOnUpdate")
8383
)
8484
.Destroy(r => r
85-
.Url("https://demos.telerik.com/aspnet-core/service/api/graphql/")
85+
.Url("https://demos.telerik.com/service/v2/graphql/")
8686
.ContentType("application/json")
8787
.Type(HttpVerbs.Post)
8888
.Data("additionalDataOnDestroy")
@@ -105,10 +105,10 @@ The GraphQL service URL endpoints are referenced in the `.Custom() -> Transport`
105105
</model>
106106
</schema>
107107
<transport parameter-map="parameterMap">
108-
<read url="https://demos.telerik.com/aspnet-core/service/api/graphql/" data="additionalDataOnRead" content-type="application/json" type="POST"/>
109-
<update url="https://demos.telerik.com/aspnet-core/service/api/graphql/" data="additionalDataOnUpdate" content-type="application/json" type="POST"/>
110-
<create url="https://demos.telerik.com/aspnet-core/service/api/graphql/" data="additionalDataOnCreate" content-type="application/json" type="POST"/>
111-
<destroy url="https://demos.telerik.com/aspnet-core/service/api/graphql/" data="additionalDataOnDestroy" content-type="application/json" type="POST"/>
108+
<read url="https://demos.telerik.com/service/v2/graphql/" data="additionalDataOnRead" content-type="application/json" type="POST"/>
109+
<update url="https://demos.telerik.com/service/v2/graphql/" data="additionalDataOnUpdate" content-type="application/json" type="POST"/>
110+
<create url="https://demos.telerik.com/service/v2/graphql/" data="additionalDataOnCreate" content-type="application/json" type="POST"/>
111+
<destroy url="https://demos.telerik.com/service/v2/graphql/" data="additionalDataOnDestroy" content-type="application/json" type="POST"/>
112112
</transport>
113113
</datasource>
114114
```

docs-aspnet/html-helpers/data-management/pivotgrid/data-binding/configurator.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ The following example demonstrates how to create the PivotConfigurator.
3333
```
3434
{% if site.core %}
3535
```TagHelper
36-
<kendo-pivotconfigurator name="configurator"
37-
datasource-id="pivotSource"
38-
filterable="true"
36+
<kendo-pivotconfigurator name="configurator"
37+
datasource-id="pivotSource"
38+
filterable="true"
3939
height="570">
4040
</kendo-pivotconfigurator>
4141
42-
<kendo-pivotgrid name="pivotgrid"
43-
filterable="true"
42+
<kendo-pivotgrid name="pivotgrid"
43+
filterable="true"
4444
datasource-id="pivotSource"
4545
height="570">
4646
</kendo-pivotgrid>
@@ -79,7 +79,7 @@ The following example demonstrates how to configure the PivotConfigurator.
7979
.Catalog("Adventure Works DW 2008R2")
8080
.Cube("Adventure Works"))
8181
.Read(read => read
82-
.Url("https://demos.telerik.com/olap/msmdpump.dll")
82+
.Url("https://demos.telerik.com/service/v2/olap/msmdpump.dll")
8383
.DataType("text")
8484
.ContentType("text/xml")
8585
.Type(HttpVerbs.Post)
@@ -102,20 +102,20 @@ The following example demonstrates how to configure the PivotConfigurator.
102102
<schema type="xmla"/>
103103
<measures values=@(new string[] {"[Measures].[Reseller Freight Cost]"} ) ></measures>
104104
<transport>
105-
<read url="https://demos.telerik.com/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST" />
105+
<read url="https://demos.telerik.com/service/v2/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST" />
106106
<connection catalog="Adventure Works DW 2008R2" cube="Adventure Works"></connection>
107107
</transport>
108108
</kendo-pivotdatasource>
109109
110-
<kendo-pivotconfigurator name="configurator"
111-
filterable="true"
112-
height="570"
110+
<kendo-pivotconfigurator name="configurator"
111+
filterable="true"
112+
height="570"
113113
datasource-id="pivotSource">
114114
</kendo-pivotconfigurator>
115115
116116
<kendo-pivotgrid name="pivotgrid"
117-
filterable="true"
118-
column-width="200"
117+
filterable="true"
118+
column-width="200"
119119
height="570"
120120
datasource-id="pivotSource">
121121
<sortable enabled="true" />

docs-aspnet/html-helpers/data-management/pivotgrid/data-binding/olap-cube-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For more information on creating, defining, and deploying the OLAP multidimensio
2323
To enable the HTTP access to the SQL Server Analysis Services, use an `MSMDPUMP.ddl` ISAPI extension.
2424

2525
* For more information on setting up the `MSMDPUMP.ddl` extension, refer to the [MSDN HTTP access tutorial](http://technet.microsoft.com/en-us/library/gg492140.aspx).
26-
* For an online accessible OLAP service for testing purposes, use `https://demos.telerik.com/olap/msmdpump.dll`. The URL does not open directly in the browser.
26+
* For an online accessible OLAP service for testing purposes, use `https://demos.telerik.com/service/v2/olap/msmdpump.dll`. The URL does not open directly in the browser.
2727

2828
## Enabling the Cross-Domain Access
2929

docs-aspnet/html-helpers/data-management/pivotgrid/data-binding/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 1
1010

1111
The PivotGrid for {{ site.framework }} supports Ajax data binding to an HTTP accessible Online Analytical Processing (OLAP) cube and to flat data.
1212

13-
Telerik UI provides an OLAP service dll that can be used for testing and is hosted at `https://demos.telerik.com/olap/msmdpump.dll`. To see the responses, the service needs to be queried and cannot be opened directly in the browser. For more information on binding the PivotGrid to data over an OLAP cube, refer to the following articles:
13+
Telerik UI provides an OLAP service dll that can be used for testing and is hosted at `https://demos.telerik.com/service/v2/olap/msmdpump.dll`. To see the responses, the service needs to be queried and cannot be opened directly in the browser. For more information on binding the PivotGrid to data over an OLAP cube, refer to the following articles:
1414
* [OLAP Cube Fundamentals]({% slug htmlhelpers_pivotgrid_aspnetcore_fundamentals %})
1515
* [OLAP Cube Setup]({% slug htmlhelpers_pivotgrid_aspnetcore_olap_cube_setup %})
1616
* [PivotConfigurator Overview]({% slug htmlhelpers_pivotgrid_aspnetcore_configurator %})

docs-aspnet/html-helpers/data-management/pivotgrid/filtering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To set a predefined filter when using Xmla data use the above-described approach
4646
<schema type="xmla"/>
4747
<measures values=@(new string[] {"[Measures].[Reseller Freight Cost]"} ) ></measures>
4848
<transport>
49-
<read url="https://demos.telerik.com/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST" />
49+
<read url="https://demos.telerik.com/service/v2/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST" />
5050
<connection catalog="Adventure Works DW 2008R2" cube="Adventure Works"></connection>
5151
</transport>
5252
<filters>

docs-aspnet/html-helpers/data-management/pivotgrid/overview.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The PivotGrid represents multidimensional data in a cross-tabular format.
2626
2727
## Basic Configuration
2828

29-
To configure the PivotGrid for Ajax binding to an [Adventure Works](https://learn.microsoft.com/en-us/analysis-services/multidimensional-tutorial/multidimensional-modeling-adventure-works-tutorial?view=asallproducts-allversions) cube that is hosted on `https://demos.telerik.com/olap/msmdpump.dll`, follow the next steps:
29+
To configure the PivotGrid for Ajax binding to an [Adventure Works](https://learn.microsoft.com/en-us/analysis-services/multidimensional-tutorial/multidimensional-modeling-adventure-works-tutorial?view=asallproducts-allversions) cube that is hosted on `https://demos.telerik.com/service/v2/olap/msmdpump.dll`, follow the next steps:
3030

3131
{% if site.core %}
3232
1. Create a new {{ site.framework }} application. If you have the [Telerik UI for ASP.NET Core Visual Studio Extensions]({% slug overview_visualstudio_aspnetcore %}) installed, create a {{ site.product }} application. Name the application `KendoPivotGrid`. If you decide not to use the Visual Studio Extensions, follow the steps from the [introductory article]({% slug gettingstarted_aspnetmvc6_aspnetmvc %}) to install {{ site.product }} in the application.
@@ -64,7 +64,7 @@ To configure the PivotGrid for Ajax binding to an [Adventure Works](https://lear
6464
.Catalog("Adventure Works DW 2008R2")
6565
.Cube("Adventure Works"))
6666
.Read(read => read
67-
.Url("https://demos.telerik.com/olap/msmdpump.dll")
67+
.Url("https://demos.telerik.com/service/v2/olap/msmdpump.dll")
6868
.DataType("text")
6969
.ContentType("text/xml")
7070
.Type(HttpVerbs.Post)
@@ -88,20 +88,20 @@ To configure the PivotGrid for Ajax binding to an [Adventure Works](https://lear
8888
<schema type="xmla"/>
8989
<measures values=@(new string[] {"[Measures].[Reseller Freight Cost]"} ) ></measures>
9090
<transport>
91-
<read url="https://demos.telerik.com/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST" />
91+
<read url="https://demos.telerik.com/service/v2/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST" />
9292
<connection catalog="Adventure Works DW 2008R2" cube="Adventure Works"></connection>
9393
</transport>
9494
</kendo-pivotdatasource>
9595
96-
<kendo-pivotconfigurator name="configurator"
97-
filterable="true"
98-
height="570"
96+
<kendo-pivotconfigurator name="configurator"
97+
filterable="true"
98+
height="570"
9999
datasource-id="pivotSource">
100100
</kendo-pivotconfigurator>
101101
102102
<kendo-pivotgrid name="pivotgrid"
103-
filterable="true"
104-
column-width="200"
103+
filterable="true"
104+
column-width="200"
105105
height="570"
106106
datasource-id="pivotSource">
107107
<sortable enabled="true" />
@@ -115,7 +115,7 @@ To configure the PivotGrid for Ajax binding to an [Adventure Works](https://lear
115115
116116
* [Data binding]({% slug databinding_pivotgridhelper_aspnetcore %})&mdash;You can bind the PivotGrid to [Online Analytical Processing (OLAP)](https://learn.microsoft.com/en-us/previous-versions/sql/sql-server-2005/ms175367(v=sql.90)) cube and or flat data.
117117
* [Filtering]({% slug htmlhelpers_pivotgrid_aspnetcore_filtering %})&mdash;Enable the filtering of the PivotGrid rows and columns.
118-
* [Sorting]({% slug htmlhelpers_pivotgrid_aspnetcore_sorting %})&mdash;The component supports sorting by the caption name of the members.
118+
* [Sorting]({% slug htmlhelpers_pivotgrid_aspnetcore_sorting %})&mdash;The component supports sorting by the caption name of the members.
119119
* [Templates]({% slug htmlhelpers_pivotgrid_aspnetcore_templates %})&mdash;The available templates allow you to control the rendering of the data cells and headers.
120120
* [Excel export]({% slug htmlhelpers_pivotgrid_aspnetcore_excelexport %})&mdash;The PivotGrid provides an export to Excel feature.
121121
* [PDF export]({% slug htmlhelpers_pivotgrid_aspnetcore_pdfexport %})&mdash;You can export the PivotGrid content to PDF through a single click.

docs-aspnet/html-helpers/data-management/pivotgridv2/data-binding/configurator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The following example demonstrates how to configure the PivotConfigurator.
7171
.Catalog("Adventure Works DW 2008R2")
7272
.Cube("Adventure Works"))
7373
.Read(read => read
74-
.Url("https://demos.telerik.com/olap/msmdpump.dll")
74+
.Url("https://demos.telerik.com/service/v2/olap/msmdpump.dll")
7575
.DataType("text")
7676
.ContentType("text/xml")
7777
.Type(HttpVerbs.Post)
@@ -95,7 +95,7 @@ The following example demonstrates how to configure the PivotConfigurator.
9595
<row name="[Geography].[City]"></row>
9696
</rows>
9797
<measures values=@(new string[] {"[Measures].[Reseller Freight Cost]"} )></measures>
98-
<transport read-url="https://demos.telerik.com/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST">
98+
<transport read-url="https://demos.telerik.com/service/v2/olap/msmdpump.dll" datatype="text" content-type="text/xml" type="POST">
9999
<connection catalog="Adventure Works DW 2008R2" cube="Adventure Works"></connection>
100100
</transport>
101101
</pivot-datasource>

docs-aspnet/html-helpers/data-management/pivotgridv2/data-binding/olap-cube-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For more information on creating, defining, and deploying the OLAP multidimensio
2323
To enable the HTTP access to the SQL Server Analysis Services, use an `MSMDPUMP.ddl` ISAPI extension.
2424

2525
* For more information on setting up the `MSMDPUMP.ddl` extension, refer to the [MSDN HTTP access tutorial](http://technet.microsoft.com/en-us/library/gg492140.aspx).
26-
* For an online accessible OLAP service for testing purposes, use `https://demos.telerik.com/olap/msmdpump.dll`. The URL does not open directly in the browser.
26+
* For an online accessible OLAP service for testing purposes, use `https://demos.telerik.com/service/v2/olap/msmdpump.dll`. The URL does not open directly in the browser.
2727

2828
## Enabling the Cross-Domain Access
2929

docs-aspnet/html-helpers/data-management/pivotgridv2/data-binding/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The PivotGridV2 for {{ site.framework }} supports Ajax data binding to an HTTP a
1919

2020
## OLAP Services
2121

22-
* Telerik UI provides an OLAP service dll that can be used for testing and is hosted at `https://demos.telerik.com/olap/msmdpump.dll`.
22+
* Telerik UI provides an OLAP service dll that can be used for testing and is hosted at `https://demos.telerik.com/service/v2/olap/msmdpump.dll`.
2323
* To see the responses, the service needs to be queried and cannot be opened directly in the browser.
2424

2525
For more information on binding the PivotGridV2 to data over an OLAP cube, refer to the following articles:

docs-aspnet/html-helpers/data-management/pivotgridv2/data-binding/razor-page.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ position: 6
88

99
# PivotGridV2 in Razor Pages
1010

11-
Razor Pages is an alternative to the MVC pattern that makes page-focused coding easier and more productive. This approach consists of a `cshtml` file and a `cshtml.cs` file (by design, the two files have the same name).
11+
Razor Pages is an alternative to the MVC pattern that makes page-focused coding easier and more productive. This approach consists of a `cshtml` file and a `cshtml.cs` file (by design, the two files have the same name).
1212

1313
You can seamlessly integrate the Telerik UI PivotGridV2 for {{ site.framework }} in Razor Pages applications.
1414

@@ -18,7 +18,7 @@ This article describes how to configure the PivotGridV2 component in a Razor Pag
1818

1919
The following example demonstrates how to configure the PivotGridV2 DataSource for Ajax data binding to an [Online Analytical Processing (OLAP)](https://learn.microsoft.com/en-us/previous-versions/sql/sql-server-2005/ms175367(v=sql.90)) cube within a Razor Pages application.
2020

21-
* Add the OLAP service dll (`https://demos.telerik.com/olap/msmdpump.dll`) as a Read request URL in the `DataSource` configuration to bind the PivotGridV2 to data over an [OLAP cube]({% slug htmlhelpers_pivotgridv2_aspnetcore_fundamentals%}#what-is-an-olap-cube). Since the data is requested from the online accessible OLAP service, it is not required to send the anti-forgery token with the POST request.
21+
* Add the OLAP service dll (`https://demos.telerik.com/service/v2/olap/msmdpump.dll`) as a Read request URL in the `DataSource` configuration to bind the PivotGridV2 to data over an [OLAP cube]({% slug htmlhelpers_pivotgridv2_aspnetcore_fundamentals%}#what-is-an-olap-cube). Since the data is requested from the online accessible OLAP service, it is not required to send the anti-forgery token with the POST request.
2222
* Define the desired initial rows, columns and measures in the `DataSource`.
2323

2424
```HtmlHelper
@@ -42,7 +42,7 @@ The following example demonstrates how to configure the PivotGridV2 DataSource f
4242
.Connection(connection => connection
4343
.Catalog("Adventure Works DW 2008R2")
4444
.Cube("Adventure Works"))
45-
.Read("https://demos.telerik.com/olap/msmdpump.dll")
45+
.Read("https://demos.telerik.com/service/v2/olap/msmdpump.dll")
4646
)
4747
)
4848
)
@@ -62,7 +62,7 @@ The following example demonstrates how to configure the PivotGridV2 DataSource f
6262
<row name="[Geography].[City]" expand="true"></row>
6363
</rows>
6464
<measures values=@(new string[] {"[Measures].[Reseller Freight Cost]"} )></measures>
65-
<transport read-url="https://demos.telerik.com/olap/msmdpump.dll">
65+
<transport read-url="https://demos.telerik.com/service/v2/olap/msmdpump.dll">
6666
<connection catalog="Adventure Works DW 2008R2" cube="Adventure Works"></connection>
6767
</transport>
6868
</pivot-datasource>

0 commit comments

Comments
 (0)