Skip to content

Commit 54d50be

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 5e3d513 commit 54d50be

File tree

35 files changed

+2377
-1234
lines changed

35 files changed

+2377
-1234
lines changed

docs-aspnet/getting-started-core/first-steps-cli.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ The suggested approach is platform-agnostic—you can apply it for macOS, Li
1818

1919
To get up and running with the project:
2020

21+
1. [Download the controls](https://www.telerik.com/download-trial-file/v2/aspnet-core-ui)
2122
1. [Meet the requirements](#meeting-the-requirements)
2223
1. [Create the ASP.NET Core application](#creating-the-application)
2324
1. [Integrate UI for ASP.NET Core in the project](#integrating-ui-for-aspnet-core)

docs-aspnet/getting-started-core/first-steps-vs-mac.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The guide creates a use-case scenario which demonstrates how to start working wi
1717

1818
To get up and running with the project:
1919

20+
1. [Download the controls](https://www.telerik.com/download-trial-file/v2/aspnet-core-ui)
2021
1. [Meet the requirements](#meeting-the-requirements)
2122
1. [Create the ASP.NET Core application](#creating-the-application)
2223
1. [Add the UI for ASP.NET Core NuGet package](#adding-the-nuget-package)

docs-aspnet/getting-started-core/first-steps.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ To configure an ASP.NET Core web application to use UI for ASP.NET Core, you can
2222

2323
To get up and running with the project:
2424

25+
1. [Download the controls](https://www.telerik.com/download-trial-file/v2/aspnet-core-ui)
2526
1. [Meet the requirements](#meeting-the-requirements)
2627
1. [Create the ASP.NET Core application](#creating-the-application)
2728
1. [Add the UI for ASP.NET Core NuGet package](#adding-the-nuget-package)

docs-aspnet/getting-started-mvc/first-steps.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ To configure an ASP.NET MVC web application to use UI for ASP.NET MVC, you can u
2020

2121
To get up and running with the project:
2222

23+
1. [Download the controls](https://www.telerik.com/download-trial-file/v2-b/ui-for-asp.net-mvc)
2324
1. [Create the ASP.NET MVC Web Application](#creating-the-application)
2425
1. [Include the Telerik UI for ASP.NET MVC client-side resources](#including-the-client-side-resources)
2526
1. [Reference the `Kendo.Mvc.dll` assembly](#adding-the-kendo.mvc.dll-reference)

docs-aspnet/html-helpers/data-management/grid/search-panel.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ Under the hood, the search panel uses filtering to show only the relevant record
1717

1818
To enable the search panel functionality, include the `Search` option to the toolbar configuration.
1919

20-
> When the server operations are enabled, you can search only by using string fields. Using the `Contains` filter operation is available only for string types.
21-
2220
@(Html.Kendo().Grid<CustomerViewModel>()
2321
.Name("Grid")
2422
.ToolBar(t => t.Search()) // Enable the Search panel.
@@ -31,7 +29,8 @@ You can also customize which fields to search through the data when a value is e
3129

3230
## Known Limitations
3331

34-
When filtering is enabled in the filter textboxes for all Grid columns will be populated with the value entered in the search textbox.
32+
* When filtering is enabled in the filter textboxes for all Grid columns will be populated with the value entered in the search textbox.
33+
* When the server operations are enabled, you can search only by using string fields. Using the `Contains` filter operation is available only for string types.
3534

3635
## See Also
3736

docs-aspnet/html-helpers/data-management/treelist/search-panel.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ Under the hood, the search panel uses filtering to show only the relevant record
1616

1717
To enable the search panel functionality, include the `Search` option to the toolbar configuration.
1818

19-
> When the server operations are enabled, you can search only by using string fields. Using the `Contains` filter operation is available only for string types.
20-
2119
@(Html.Kendo().TreeList<CustomerViewModel>()
2220
.Name("treeList")
2321
.ToolBar(t => t.Search()) // Enable the Search panel.
@@ -30,7 +28,8 @@ You can also customize which fields to search through the data when a value is e
3028

3129
## Known Limitations
3230

33-
When filtering is enabled in the filter textboxes for all TreeList columns will be populated with the value entered in the search textbox.
31+
* When filtering is enabled in the filter textboxes for all TreeList columns will be populated with the value entered in the search textbox.
32+
* When the server operations are enabled, you can search only by using string fields. Using the `Contains` filter operation is available only for string types.
3433

3534
## See Also
3635

docs-aspnet/html-helpers/overview.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,27 @@ HTML Helpers can be added and further configured through predefined strongly typ
1515

1616
{% if site.core %}
1717

18+
## Widgets vs. Helpers
19+
20+
The Kendo UI widgets:
21+
22+
* Allow for a complete server-platform independence.
23+
* Provide full control over the placement of the initialization scripts.
24+
* Support the integration with the [MVVM](https://docs.telerik.com/kendo-ui/framework/mvvm/overview), [AngularJS](https://docs.telerik.com/kendo-ui/framework/AngularJS/introduction), and [Single-Page Application](https://docs.telerik.com/kendo-ui/framework/spa/overview) development patterns.
25+
* Support [Visual Studio IntelliSense](https://docs.telerik.com/kendo-ui/third-party/vs-intellisense) for the client-side API.
26+
27+
The {{ site.product_short }} helpers:
28+
29+
* Allow you to create widgets with no HTML and JavaScript coding.
30+
* Provide for server-side data binding and, in some cases, server-side rendering.
31+
* Allow you to use the `ToDataSourceResult()` extension method for binding Kendo UI widgets to server-side collections and for performing data operations (paging, sorting, filtering, and grouping).
32+
* Provide integration with some {{ site.framework }} features such as security trimming and editor templates.
33+
* Support unobtrusive validation based on Data Annotation attributes.
34+
* Enable a simple implementation of CRUD operations.
35+
* Support Visual Studio IntelliSense for the server-side configuration syntax.
36+
* Enable Visual Studio Extensions for automatic creation of new {{ site.product }} applications and for automatic updating of the Telerik UI version.
37+
* Enable you to use scaffolding to generate widget declarations and related controller action methods.
38+
1839
## Known Issues
1940

2041
* Currently, {{ site.product }} does not support localization resources. For more information and discussion on this issue, refer to [dotnet/coreclr#2007](https://github.com/dotnet/coreclr/issues/2007) and [aspnet/Home/issues/1124](https://github.com/aspnet/Home/issues/1142).

docs-aspnet/introduction.md

Lines changed: 42 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ position: 1
1212
{% assign telerik_product_url = "aspnet-mvc" %}
1313
{% endif %}
1414

15-
# Welcome to {{ site.product }}
15+
## Welcome to {{ site.product }}
1616

1717
Thank you for choosing Progress<sup>®</sup> Telerik<sup>®</sup> {{ site.product_short }}!
1818

@@ -22,26 +22,36 @@ The {{ site.product }} HTML{% if site.core %} and Tag{% endif %} helpers:
2222
* Allow you to configure a Kendo UI widget through the C# or VB.NET code&mdash;for example, to set its value, data source, and so on.
2323
* Render the HTML and JavaScript that are needed to initialize a Kendo UI widget whose options propagate to the client-side through its initialization script.
2424

25-
## Widgets vs. Helpers
26-
27-
The Kendo UI widgets:
28-
29-
* Allow for a complete server-platform independence.
30-
* Provide full control over the placement of the initialization scripts.
31-
* Support the integration with the [MVVM](https://docs.telerik.com/kendo-ui/framework/mvvm/overview), [AngularJS](https://docs.telerik.com/kendo-ui/framework/AngularJS/introduction), and [Single-Page Application](https://docs.telerik.com/kendo-ui/framework/spa/overview) development patterns.
32-
* Support [Visual Studio IntelliSense](https://docs.telerik.com/kendo-ui/third-party/vs-intellisense) for the client-side API.
33-
34-
The {{ site.product_short }} helpers:
35-
36-
* Allow you to create widgets with no HTML and JavaScript coding.
37-
* Provide for server-side data binding and, in some cases, server-side rendering.
38-
* Allow you to use the `ToDataSourceResult()` extension method for binding Kendo UI widgets to server-side collections and for performing data operations (paging, sorting, filtering, and grouping).
39-
* Provide integration with some {{ site.framework }} features such as security trimming and editor templates.
40-
* Support unobtrusive validation based on Data Annotation attributes.
41-
* Enable a simple implementation of CRUD operations.
42-
* Support Visual Studio IntelliSense for the server-side configuration syntax.
43-
* Enable Visual Studio Extensions for automatic creation of new {{ site.product }} applications and for automatic updating of the Telerik UI version.
44-
* Enable you to use scaffolding to generate widget declarations and related controller action methods.
25+
To read more about the benefits of using {{ site.product }}, please visit the {% if site.core %}[product overview page](https://www.telerik.com/aspnet-core-ui){% else %}[product overview page](https://www.telerik.com/aspnet-mvc){% endif %}.
26+
27+
<style>
28+
/* UI for ASP.NET download trial button */
29+
div#aspnet_trial {
30+
text-align: center !important;
31+
}
32+
div#aspnet_trial .aspnet_download_btn {
33+
color: #fff;
34+
background-color: #e74b3c;
35+
padding:.44em .9em .52em;
36+
font-size: 20px;
37+
font-weight:400;
38+
letter-spacing:-.025em;
39+
position:relative;
40+
display:inline-block;
41+
line-height:1.2;
42+
-webkit-transition:color .2s ease,background-color .2s ease;
43+
transition:color .2s ease,background-color .2s ease;
44+
border-radius:2px;
45+
-webkit-appearance:none;
46+
font-family:Metric,Arial,Gadget,sans-serif;
47+
text-align:center
48+
}
49+
</style>
50+
51+
<div id="aspnet_trial">
52+
<br />
53+
<a href="https://www.telerik.com/download-trial-file/v2/{{ telerik_product_url }}" class="aspnet_download_btn">Download Free Trial</a>
54+
</div>
4555

4656
## Getting Started
4757

@@ -54,13 +64,18 @@ More resources on getting started with {{ site.product_short }}:
5464
* [First Steps with {{ site.product_short }} on Visual Studio for Mac]({% slug gettingstarted_firststeps_vsmac %})
5565
* [First Steps with {{ site.product_short }} with CLI]({% slug gettingstartedcli_aspnetmvc6_aspnetmvc %})
5666
{% else %}
67+
* [First Steps with {{ site.product_short }}]({% slug gettingstarted_aspnetmvc %})
5768
* [Telerik UI for ASP.NET MVC fundamentals]({% slug fundamentals_aspnetmvc %})
5869
* [Installing Telerik UI for ASP.NET MVC with NuGet]({% slug aspnetmvc_nuget %})
5970
* [Scaffolding the Telerik UI for ASP.NET MVC project]({% slug scaffolding_aspnetmvc %})
6071
* [Integrating the Telerik UI for ASP.NET MVC project with Visual Studio]({% slug overview_visualstudio_aspnetmvc %})
6172
{% endif %}
6273

63-
## Supported Environments
74+
### List of Helpers
75+
76+
{% include_relative list-of-helpers.html %}
77+
78+
### Supported Environments
6479

6580
{% if site.core %}
6681
{{ site.product_short }} targets the stable releases of the {{ site.framework }} framework. The target runtime is [CoreCLR](https://github.com/dotnet/coreclr). The {{ site.product_short }} suite also supports the full desktop CLR.
@@ -77,25 +92,17 @@ Telerik {{ site.product_short }} supports:
7792
The Telerik UI for ASP.NET MVC Visual Studio extensions support Visual Studio 2015 and later.
7893
{% endif %}
7994

80-
## List of Helpers
81-
82-
{% if site.core %}
83-
{% include_relative list-of-helpers-core.html %}
84-
{% else %}
85-
{% include_relative list-of-helpers-mvc.html %}
86-
{% endif %}
87-
88-
## Monitoring the Progress Live Services
95+
### Monitoring the Progress Live Services
8996

9097
Progress provides up-to-date information about the live services it delivers to its customers on a daily basis&mdash;for example, the Kendo UI CDN services, Kendo UI Dojo playground, and Telerik NuGet feed.
9198

9299
* [Progress<sup>®</sup> Telerik<sup>®</sup> Live Services Status Page](http://status.telerik.com/)
93100

94-
## Trial Version and Commercial License
101+
### Trial Version and Commercial License
95102

96103
This {{ site.product_short }} library is a commercial UI library. You are welcome to explore its full functionality and get technical support from the team when you register for a free 30-day trial. To use it commercially, you need to [purchase a license](https://www.telerik.com/purchase/kendo-ui). Feel free to review the Telerik {{ site.product_short }} [License Agreement](https://www.telerik.com/purchase/license-agreement/kendo-ui) to get acquainted with the full terms of use.
97104

98-
## Support Options
105+
### Support Options
99106

100107
For any issues you might encounter while working with {{ site.product_short }}, use any of the available support channels:
101108

@@ -110,6 +117,7 @@ For any issues you might encounter while working with {{ site.product_short }},
110117
* [Virtual Classroom](https://progress.exceedlms.com/student/path/497495-telerik-ui-for-asp-net-core)
111118
* [Knowledge Base](https://docs.telerik.com/aspnet-core/knowledge-base.html)
112119
* [Support Resources Hub Page](https://www.telerik.com/support/aspnet-core)
120+
* [Collected Examples on Telerik UI for ASP.NET Core](https://github.com/telerik/ui-for-aspnet-core-examples)
113121
{% else %}
114122
* [Virtual Classroom](https://progress.exceedlms.com/student/path/498054-telerik-ui-for-asp-net-mvc)
115123
* [Tutorials]({% slug overview_timeefficiencyapp_aspnetmvc6 %})
@@ -119,7 +127,7 @@ For any issues you might encounter while working with {{ site.product_short }},
119127
* [Collected Examples on Telerik UI for ASP.NET MVC](https://github.com/telerik/ui-for-aspnet-mvc-examples)
120128
{% endif %}
121129

122-
## Next Steps
130+
### Next Steps
123131

124132
{% if site.core %}
125133
* [First steps on Visual Studio for Windows (online guide)]({% slug gettingstarted_aspnetmvc6_aspnetmvc %})

0 commit comments

Comments
 (0)