You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/data-management/grid/search-panel.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,6 @@ Under the hood, the search panel uses filtering to show only the relevant record
17
17
18
18
To enable the search panel functionality, include the `Search` option to the toolbar configuration.
19
19
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
-
22
20
@(Html.Kendo().Grid<CustomerViewModel>()
23
21
.Name("Grid")
24
22
.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
31
29
32
30
## Known Limitations
33
31
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.
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/data-management/treelist/search-panel.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,6 @@ Under the hood, the search panel uses filtering to show only the relevant record
16
16
17
17
To enable the search panel functionality, include the `Search` option to the toolbar configuration.
18
18
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
-
21
19
@(Html.Kendo().TreeList<CustomerViewModel>()
22
20
.Name("treeList")
23
21
.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
30
28
31
29
## Known Limitations
32
30
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.
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/overview.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,27 @@ HTML Helpers can be added and further configured through predefined strongly typ
15
15
16
16
{% if site.core %}
17
17
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
+
18
39
## Known Issues
19
40
20
41
* 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).
Copy file name to clipboardExpand all lines: docs-aspnet/introduction.md
+42-34Lines changed: 42 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ position: 1
12
12
{% assign telerik_product_url = "aspnet-mvc" %}
13
13
{% endif %}
14
14
15
-
# Welcome to {{ site.product }}
15
+
##Welcome to {{ site.product }}
16
16
17
17
Thank you for choosing Progress<sup>®</sup> Telerik<sup>®</sup> {{ site.product_short }}!
18
18
@@ -22,26 +22,36 @@ The {{ site.product }} HTML{% if site.core %} and Tag{% endif %} helpers:
22
22
* Allow you to configure a Kendo UI widget through the C# or VB.NET code—for example, to set its value, data source, and so on.
23
23
* 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.
24
24
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 %}.
@@ -54,13 +64,18 @@ More resources on getting started with {{ site.product_short }}:
54
64
*[First Steps with {{ site.product_short }} on Visual Studio for Mac]({% slug gettingstarted_firststeps_vsmac %})
55
65
*[First Steps with {{ site.product_short }} with CLI]({% slug gettingstartedcli_aspnetmvc6_aspnetmvc %})
56
66
{% else %}
67
+
*[First Steps with {{ site.product_short }}]({% slug gettingstarted_aspnetmvc %})
57
68
*[Telerik UI for ASP.NET MVC fundamentals]({% slug fundamentals_aspnetmvc %})
58
69
*[Installing Telerik UI for ASP.NET MVC with NuGet]({% slug aspnetmvc_nuget %})
59
70
*[Scaffolding the Telerik UI for ASP.NET MVC project]({% slug scaffolding_aspnetmvc %})
60
71
*[Integrating the Telerik UI for ASP.NET MVC project with Visual Studio]({% slug overview_visualstudio_aspnetmvc %})
61
72
{% endif %}
62
73
63
-
## Supported Environments
74
+
### List of Helpers
75
+
76
+
{% include_relative list-of-helpers.html %}
77
+
78
+
### Supported Environments
64
79
65
80
{% if site.core %}
66
81
{{ 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.
The Telerik UI for ASP.NET MVC Visual Studio extensions support Visual Studio 2015 and later.
78
93
{% endif %}
79
94
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
89
96
90
97
Progress provides up-to-date information about the live services it delivers to its customers on a daily basis—for example, the Kendo UI CDN services, Kendo UI Dojo playground, and Telerik NuGet feed.
91
98
92
99
*[Progress<sup>®</sup> Telerik<sup>®</sup> Live Services Status Page](http://status.telerik.com/)
93
100
94
-
## Trial Version and Commercial License
101
+
###Trial Version and Commercial License
95
102
96
103
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.
97
104
98
-
## Support Options
105
+
###Support Options
99
106
100
107
For any issues you might encounter while working with {{ site.product_short }}, use any of the available support channels:
101
108
@@ -110,6 +117,7 @@ For any issues you might encounter while working with {{ site.product_short }},
0 commit comments