Skip to content

Commit 63bcde7

Browse files
committed
Sync with Kendo UI Professional
1 parent a845763 commit 63bcde7

27 files changed

+200
-54
lines changed

docs-aspnet/html-helpers/charts/chart-types/sankey-charts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The {{ site.product }} Sankey Diagram allows you to create diagrams that visuali
2222

2323
Sankey Diagram visualize its data using Nodes (items) and Links (connections). You can add them using their respective collections. In addition to that, you can configure the links, legend, and tooltips displayed on the Sankey Diagram by using the following properties:
2424

25-
- [`Links`](https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/sankey/configuration/links)—Provides options to set the [`ColorType`](https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/sankey/configuration/links.colortypes) of the link to either `Static`, `Source`, or `Target`. It also allows you to control the opacity and highlighting of the link.
25+
- [`Links`](https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/sankey/configuration/links)—Provides options to set the [`ColorType`](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/sankey/configuration/links.colortype) of the link to either `Static`, `Source`, or `Target`. It also allows you to control the opacity and highlighting of the link.
2626
- [`Legend`](https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/sankey/configuration/legend)—Provides options to customize the appearance of the diagram legend.
2727
- [`Tooltip`](https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/sankey/configuration/labels)—Provides options to modify the the functionality of the diagram element titles.
2828

@@ -45,7 +45,7 @@ Sankey Diagram visualize its data using Nodes (items) and Links (connections). Y
4545
}))
4646
.Tooltip(t => t
4747
.Delay(100)
48-
.FollowPointer(true)
48+
.FollowPointer(true))
4949
)
5050
```
5151
{% if site.core %}
@@ -74,7 +74,7 @@ Sankey Diagram visualize its data using Nodes (items) and Links (connections). Y
7474

7575
## Configuring the Link Colors
7676

77-
The Sankey diagram provides different [`ColorTypes`](https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/sankey/configuration/links.colortypes) of the links. The supported LinkColorType values are:
77+
The Sankey diagram provides different [`ColorTypes`](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/sankey/configuration/links.colortype) of the links. The supported LinkColorType values are:
7878

7979
* `Static`—The color is static and is determined by the link's color option.
8080
* `Source`—The link color is the same as the source node color.

docs-aspnet/html-helpers/charts/treemap/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,6 @@ You can continue experimenting with the code sample above by running it in the T
342342

343343
## See Also
344344
* [Basic Usage of the TreeMap for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/treemap)
345-
* [Client-Side API of the TreeMap](https://docs.telerik.com/kendo-ui/api/javascript/ui/treemap)
345+
* [Client-Side API of the TreeMap](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/treemap)
346346
* [Server-Side API of the TreeMap](/api/map)
347347
* [Knowledge Base Section](/knowledge-base)

docs-aspnet/html-helpers/data-management/grid/row-drag-drop.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ Additionally, the row drag clue will be `N items selected` where `N` is the numb
108108

109109
You can move items from one instance of the Grid to another by handling the [`RowReorder` event](https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/events/rowreorder) of the Grid. It fires on reordering for both Grid instances and allows you to access and modify their data sources. Both Grids must be bound to the same model.
110110

111+
> Dragging and dropping a row into an empty Grid requires a custom implementation that adds a placeholder row to the target Grid.
112+
111113
For a runnable example, refer to the [demo on drag and drop by the Grid](https://demos.telerik.com/{{ site.platform }}/grid/drag-drop).
112114

113115
## Row Click-Move-Click
@@ -252,6 +254,8 @@ The {{site.product}} Grid exposes a [RowReorder](/api/kendo.mvc.ui.fluent/gridev
252254

253255
You can reorder the rows through the keyboard when the `Navigatable()` method is enabled.
254256

257+
On mobile devices, the Drag and Drop functionality activates on `hold` & `slide` of the row.
258+
255259
The example below demonstrates how to drag and drop the Grid rows by using the keys `Ctrl + Up/Down`.
256260

257261
```HtmlHelper
@@ -294,9 +298,13 @@ The example below demonstrates how to drag and drop the Grid rows by using the k
294298
```
295299
{% endif %}
296300

301+
When the [`Multiple` selection]({% slug htmlhelpers_grid_aspnetcore_selection%}#select-modes
302+
) option is enabled for the Grid rows, the user can drag and drop the selected rows through the `Ctrl` + `Mouse left-click` combination.
303+
297304
## Known Limitations
298305

299306
* Any DataSource operations (for example, sorting, filtering, grouping, and so on) that involve rendering rows in a different order than their natural one are not supported.
307+
* The Drag and Drop functionality in combination with the [selection feature]({% slug htmlhelpers_grid_aspnetcore_selection%}) is not supported in Microsoft Internet Explorer.
300308

301309
## See Also
302310

docs-aspnet/html-helpers/data-management/pivotgridv2/export/excel-export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use the Excel export feature, reference the JSZip library before the Kendo UI
1414

1515
## General
1616

17-
To export the PivotGridV2, call the [`saveAsExcel()`](https://docs.telerik.com/kendo-ui/api/javascript/ui/pivotgridv2/methods/saveasexcel) client-side API method of the component.
17+
To export the PivotGridV2, call the [`saveAsExcel()`](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/ui/pivotgrid/methods/saveasexcel) client-side API method of the component.
1818

1919
```JS script
2020
<script>

docs-aspnet/html-helpers/diagrams-and-maps/diagram/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ The following example demonstrates how to subscribe to events by a template dele
7676

7777
* [Using the API of the Diagram for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/diagram/api)
7878
* [Diagram Server-Side API for {{ site.framework}}](/api/diagram)
79-
* [Diagram Client-Side API](https://docs.telerik.com/kendo-ui/api/javascript/ui/diagram)
79+
* [Diagram Client-Side API](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/diagram)

docs-aspnet/html-helpers/diagrams-and-maps/map/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,4 +369,4 @@ The following example demonstrates how to subscribe to events by a template dele
369369

370370
* [Using the API of the Map for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/map/api)
371371
* [Map Server-Side API](/api/map)
372-
* [Map Client-Side API](https://docs.telerik.com/kendo-ui/api/javascript/ui/map)
372+
* [Map Client-Side API](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/map)

docs-aspnet/html-helpers/diagrams-and-maps/map/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,6 @@ You can continue experimenting with the code sample above by running it in the T
269269
* [Use Remote Binding for the markers of the Map]({% slug htmlhelpers_map_remote_binding_markers %})
270270
## See Also
271271
* [Using the API of the Map for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/map/api)
272-
* [Client-Side API of the Map](https://docs.telerik.com/kendo-ui/api/javascript/ui/map)
272+
* [Client-Side API of the Map](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/map)
273273
* [Server-Side API of the Map](/api/map)
274274
* [Knowledge Base Section](/knowledge-base)

docs-aspnet/html-helpers/gauges/circulargauge/getting-started.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ You can reference the Circular Gauge instances that you have created and build o
123123
});
124124
```
125125

126-
1. Use the [Circular Gauge client-side API](https://docs.telerik.com/kendo-ui/api/javascript/ui/circulargauge#methods) to control the behavior of the component. In this example, you will use the [`value`](https://docs.telerik.com/kendo-ui/api/javascript/ui/circulargauge/methods/value) method to change the value of the Circular Gauge when the user presses the ArrowUp or ArrowDown keyboard buttons.
126+
1. Use the [Circular Gauge client-side API](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/circulargauge#methods) to control the behavior of the component. In this example, you will use the [`value()`](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/circulargauge/methods/value) method to change the value of the Circular Gauge when the user presses the `ArrowUp` or `ArrowDown` keyboard buttons.
127+
127128

128129
```JavaScript
129130
$("body").on("keydown",function(e){
@@ -158,6 +159,6 @@ You can continue experimenting with the code sample above by running it in the T
158159
## See Also
159160

160161
* [Using the API of the Circular Gauge for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/circular-gauge/api)
161-
* [Client-Side API of the Circular Gauge](https://docs.telerik.com/kendo-ui/api/javascript/ui/circulargauge)
162+
* [Client-Side API of the Circular Gauge](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/circulargauge)
162163
* [Server-Side API of the Circular Gauge](/api/circulargauge)
163164
* [Knowledge Base Section](/knowledge-base)

docs-aspnet/html-helpers/gauges/lineargauge/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ You can reference the Linear Gauge instances that you have created and build on
186186
});
187187
```
188188

189-
1. Use the [Linear Gauge client-side API](https://docs.telerik.com/kendo-ui/api/javascript/ui/lineargauge#methods) to control the behavior of the component. In this example, you will use the [`value`](https://docs.telerik.com/kendo-ui/api/javascript/ui/lineargauge/methods/value) method to change the value of the Linear Gauge every second to ensure that the visualized thermometer is exact.
189+
1. Use the [Linear Gauge client-side API](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/lineargauge#methods) to control the behavior of the component. In this example, you will use the [`value()`](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/lineargauge/methods/value) method to change the value of the Linear Gauge every second.
190190

191191
```JavaScript
192192
setInterval(function(){

docs-aspnet/html-helpers/gauges/radialgauge/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ You can reference the Radial Gauge instances that you have created and build on
125125
});
126126
```
127127

128-
1. Use the [Radial Gauge client-side API](https://docs.telerik.com/kendo-ui/api/javascript/ui/radialgauge#methods) to control the behavior of the component. In this example, you will use the [`value`](https://docs.telerik.com/kendo-ui/api/javascript/ui/radialgauge/methods/value) method to change the value of the Radial Gauge when the user presses the ArrowUp or ArrowDown keyboard buttons.
128+
1. Use the [Radial Gauge client-side API](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/radialgauge#methods) to control the behavior of the component. In this example, you will use the [`value()`](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/radialgauge/methods/value) method to change the value of the Radial Gauge when the user presses the `ArrowUp` or `ArrowDown` keyboard buttons.
129129

130130
```JavaScript
131131
$("body").on("keydown",function(e){
@@ -159,6 +159,6 @@ You can continue experimenting with the code sample above by running it in the T
159159
## See Also
160160

161161
* [Radial Gauge for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/radial-gauge)
162-
* [Client-Side API of the Radial Gauge](https://docs.telerik.com/kendo-ui/api/javascript/ui/radialgauge)
162+
* [Client-Side API of the Radial Gauge](https://www.telerik.com/kendo-jquery-ui/documentation/api/javascript/dataviz/ui/radialgauge)
163163
* [Server-Side API of the Radial Gauge](/api/radialgauge)
164164
* [Knowledge Base Section](/knowledge-base)

0 commit comments

Comments
 (0)