Skip to content

Commit 95c1ed1

Browse files
committed
Sync with Kendo UI Professional
1 parent f31c639 commit 95c1ed1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+3132
-537
lines changed

docs-aspnet/document-processing.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,19 @@ Telerik Document Processing supports [.NET Standard 2.0](https://github.com/dotn
5353

5454
>In case you need a version of Telerik Document Processing compatible with [.NET Framework 4.0](https://dotnet.microsoft.com/download/dotnet-framework/net40) or later, check the suites which you can use to obtain the binaries from in the [Installing on Your Computer](https://docs.telerik.com/devtools/document-processing/getting-started/installing-on-your-computer) help topic.
5555
56+
## DPL Configuration Wizard
57+
58+
Adding DPL NuGet references to the project using the `dpl` folder in the distribution that the project uses. There are a couple of images showing how the wizard is launched and its main page.
59+
60+
### Wizard launch context menu:
61+
![{{ site.product_short }} DPL wizard launch context menu](images/context-menu-dpl.png)
62+
63+
### Wizard launch main menu:
64+
![{{ site.product_short }} DPL wizard launch main menu](images/main-menu-dpl.png)
65+
66+
### Wizard main page:
67+
![{{ site.product_short }} DPL wizard main page:](images/wizard-main-page-dpl.png)
68+
5669
## Licensing
5770

5871
Telerik Document Processing is available as part of the following suites:

docs-aspnet/html-helpers/charts/scaffolding.md

Lines changed: 0 additions & 86 deletions
This file was deleted.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ The `RowResize` event fires when the user resizes one or more rows. You can subs
9696
## See Also
9797

9898
* [Row Resizing in the {{ site.product }} Grid](https://demos.telerik.com/{{ site.platform }}/grid/row-resizing)
99-
* [Grid events]({{% slug grid_events %}})
99+
* [Grid events]({% slug grid_events %})
100100
* [Server-side API](/api/grid)
101101
* [Client-side API of the Grid](/api/javascript/ui/grid)

docs-aspnet/html-helpers/data-management/grid/scaffolding.md

Lines changed: 0 additions & 105 deletions
This file was deleted.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: Adaptive Mode
3+
page_title: Adaptive Mode
4+
description: "Learn how to configure adaptive mode of the the Telerik UI AutoComplete component for {{ site.framework }}."
5+
slug: htmlhelpers_autocomplete_adaptive_mode_aspnetcore
6+
position: 5
7+
---
8+
9+
# Adaptive Mode
10+
11+
The Telerik UI for {{ site.framework }} AutoComplete supports an adaptive mode that provides a mobile-friendly rendering of its popup. Which will accommodate its content based on the current screen size.
12+
13+
To set the adaptive mode, use the `AdaptiveMode()` option.
14+
15+
```HtmlHelper
16+
@(Html.Kendo().AutoComplete()
17+
.Name("autocomplete")
18+
.DataTextField("ProductName")
19+
.Filter("contains")
20+
.AdaptiveMode(AdaptiveMode.Auto)
21+
.DataSource(source =>
22+
{
23+
source.Read(read =>
24+
{
25+
read.Action("Products_Read", "AutoComplete");
26+
})
27+
.ServerFiltering(true);
28+
})
29+
)
30+
31+
```
32+
{% if site.core %}
33+
```TagHelper
34+
<kendo-autocomplete name="products"
35+
filter="FilterType.Contains"
36+
datatextfield="ProductName"
37+
adaptive-mode="AdaptiveMode.Auto"
38+
<datasource type="DataSourceTagHelperType.Custom" server-filtering="true">
39+
<transport>
40+
<read url="@Url.Action("Products_Read", "AutoComplete")" />
41+
</transport>
42+
</datasource>
43+
</kendo-autocomplete>
44+
```
45+
{% endif %}
46+
47+
## See Also
48+
49+
* [Server-Side API](https://docs.telerik.com/{{ site.platform }}/api/autocomplete)
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: Adaptive Mode
3+
page_title: Adaptive Mode
4+
description: "Learn how to configure adaptive mode of the the Telerik UI ComboBox component for {{ site.framework }}."
5+
slug: htmlhelpers_combobox_adaptive_mode_aspnetcore
6+
position: 5
7+
---
8+
9+
# Adaptive Mode
10+
11+
The Telerik UI for {{ site.framework }} ComboBox supports an adaptive mode that provides a mobile-friendly rendering of its popup. Which will accommodate its content based on the current screen size.
12+
13+
To set the adaptive mode, use the `AdaptiveMode()` option.
14+
15+
```HtmlHelper
16+
@(Html.Kendo().ComboBox()
17+
.Name("combobox")
18+
.DataTextField("ProductName")
19+
.DataValueField("ProductID")
20+
.AdaptiveMode(AdaptiveMode.Auto)
21+
.DataSource(source =>
22+
{
23+
source.Read(read =>
24+
{
25+
read.Action("Products_Read", "ComboBox");
26+
});
27+
})
28+
)
29+
```
30+
{% if site.core %}
31+
```TagHelper
32+
<kendo-combobox name="combobox"
33+
adaptive-mode="AdaptiveMode.Auto"
34+
datatextfield="ProductName"
35+
datavaluefield="ProductID">
36+
<datasource>
37+
<transport>
38+
<read url="@Url.Action("Products_Read", "ComboBox")" />
39+
</transport>
40+
</datasource>
41+
</kendo-combobox>
42+
```
43+
{% endif %}
44+
45+
## See Also
46+
47+
* [Server-Side API](https://docs.telerik.com/{{ site.platform }}/api/combobox)

docs-aspnet/html-helpers/editors/dateinput/appearance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Appearance
33
page_title: Appearance
44
description: "Learn about the rendering and appearance options of the Telerik UI DateInput for {{ site.framework }}."
55
slug: appearance_dateinput
6-
position: 2
6+
position: 3
77
---
88

99
# DateInput Appearance

0 commit comments

Comments
 (0)