Skip to content

Commit 918b236

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent f143896 commit 918b236

File tree

8 files changed

+186
-15
lines changed

8 files changed

+186
-15
lines changed

docs-aspnet/installation/overview-download.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ Telerik UI for ASP.NET Core requires .NET Core. To install .NET core, follow the
1818

1919
To download and install Telerik UI for ASP.NET Core, you can use either of the following approaches:
2020

21-
* The [Windows MSI installer package]({% slug msi_install_aspnetmvc6_aspnetmvc %}) comes with a standard setup wizard. The setup wizard installs the Telerik UI for ASP.NET Core server-side packages and the client-side resources. The MSI allows you to chose whether to install the offline version of the [Telerik UI for ASP.NET Core Demos](https://demos.telerik.com/aspnet-core) and the [Telerik UI for ASP.NET Core Visual Studio extensions]({% slug overview_visualstudio_aspnetcore %}). There is also an option that configures the Telerik NuGet feed for you.
21+
* Automated installer:
22+
* Windows (`.msi`). The [Windows MSI installer package]({% slug msi_install_aspnetmvc6_aspnetmvc %}) comes with a standard setup wizard. The setup wizard installs the Telerik UI for ASP.NET Core server-side packages and the client-side resources. The MSI allows you to chose whether to install the offline version of the [Telerik UI for ASP.NET Core Demos](https://demos.telerik.com/aspnet-core) and the [Telerik UI for ASP.NET Core Visual Studio extensions]({% slug overview_visualstudio_aspnetcore %}). There is also an option that configures the Telerik NuGet feed for you.
23+
* MacOS (`.pkg`)
24+
* Linux (.sh + .tar.gz). Pass -s <path to the archive> when running the script. Other arguments are -d for the location where the archive will be extracted (defaults to ${HOME}/telerik-aspnetcore") and -SkipNETCoreInstall to skip the installation of .NET Core (note that the framework is required).
2225
* [NuGet]({% slug nuget_install_aspnetmvc6_aspnetmvc %}) allows you to install only the packages that you need for your project. The Telerik Nuget feed is available only to registered users because it requires authentication.
2326
* [NPM]({% slug npmpackages_core %}) offers another way to install the needed packages for your project.
2427
* [Bower]({% slug bowerpackage_core %}) was a popular package manager but starting with ASP.NET Core v2.1 it is no longer supported.

docs/api/javascript/ui/grid.md

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3111,6 +3111,66 @@ The text message displayed in the column menu for unlocking a column.
31113111
});
31123112
</script>
31133113

3114+
### columnMenu.messages.apply `String` *(default: "Apply")*
3115+
3116+
The text of the button which applies the columns filter.
3117+
3118+
> The button is visible when the column menu [componentType](/api/javascript/ui/grid/configuration/columnmenu.componenttype) is set to `modern`.
3119+
3120+
#### Example - column menu apply button text
3121+
3122+
<div id="grid"></div>
3123+
<script>
3124+
$("#grid").kendoGrid({
3125+
columns: [
3126+
{ field: "id", width:200 },
3127+
{ field: "name", width:400 },
3128+
{ field: "age", width:400 }
3129+
],
3130+
columnMenu: {
3131+
componentType: "modern",
3132+
messages: {
3133+
apply: "Apply Columns"
3134+
}
3135+
},
3136+
sortable: true,
3137+
dataSource: [
3138+
{ id: 1, name: "Jane Doe", age: 30 },
3139+
{ id: 2, name: "John Doe", age: 33 }
3140+
]
3141+
});
3142+
</script>
3143+
3144+
### columnMenu.messages.reset `String` *(default: "Reset")*
3145+
3146+
The text of the button which resets the columns filter.
3147+
3148+
> The button is visible when the column menu [componentType](/api/javascript/ui/grid/configuration/columnmenu.componenttype) is set to `modern`.
3149+
3150+
#### Example - column menu reset button text
3151+
3152+
<div id="grid"></div>
3153+
<script>
3154+
$("#grid").kendoGrid({
3155+
columns: [
3156+
{ field: "id", width:200 },
3157+
{ field: "name", width:400 },
3158+
{ field: "age", width:400 }
3159+
],
3160+
columnMenu: {
3161+
componentType: "modern",
3162+
messages: {
3163+
reset: "Reset Columns"
3164+
}
3165+
},
3166+
sortable: true,
3167+
dataSource: [
3168+
{ id: 1, name: "Jane Doe", age: 30 },
3169+
{ id: 2, name: "John Doe", age: 33 }
3170+
]
3171+
});
3172+
</script>
3173+
31143174
### dataSource `Object|Array|kendo.data.DataSource`
31153175

31163176
The data source of the widget which is used render table rows. Can be a JavaScript object which represents a valid data source configuration, a JavaScript array or an existing [kendo.data.DataSource](/api/javascript/data/datasource)
@@ -9033,7 +9093,7 @@ A string, DOM element or jQuery object which represents the table cell. A string
90339093

90349094
### clearSelection
90359095

9036-
Clears the currently selected table rows or cells (depending on the current selection [mode](/api/javascript/ui/grid/configuration/selectable)).
9096+
Clears the currently selected table rows or cells (depending on the current selection [mode](/api/javascript/ui/grid/configuration/selectable)).
90379097

90389098
> By default clearSelection will clear the selected rows on the current page only when [persistSelection](/api/javascript/ui/grid/configuration/persistselection) is enabled. In order to clear all selected rows follow the approach in [this Knowledge Base article](https://docs.telerik.com/kendo-ui/knowledge-base/clear-selection-all-pages-grid).
90399099

src/messages/kendo.messages.bg-BG.js

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,9 @@ $.extend(true, kendo.ui.ColumnMenu.prototype.options.messages,{
580580
"unlock": "Отключи колоната",
581581
"stick" : "Залепи колоната",
582582
"unstick": "Отлепи колоната",
583-
"setColumnPosition": "Задай позиция на колоната"
583+
"setColumnPosition": "Задай позиция на колоната",
584+
"apply": "Приложи",
585+
"reset": "Нулирай"
584586
});
585587
}
586588

@@ -590,6 +592,7 @@ if (kendo.ui.RecurrenceEditor) {
590592
kendo.ui.RecurrenceEditor.prototype.options.messages =
591593
$.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
592594
"repeat": "Повторение",
595+
"recurrenceEditorTitle": "Конфигуратор на повторенията",
593596
"daily": {
594597
"interval": " ден(дни)",
595598
"repeatEvery": "Повтаряй всеки: "
@@ -650,6 +653,8 @@ $.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
650653
if (kendo.ui.MobileRecurrenceEditor) {
651654
kendo.ui.MobileRecurrenceEditor.prototype.options.messages =
652655
$.extend(true, kendo.ui.MobileRecurrenceEditor.prototype.options.messages, kendo.ui.RecurrenceEditor.prototype.options.messages, {
656+
"cancel": "Откажи",
657+
"update": "Запази",
653658
"endTitle": "Повтарянето завършва",
654659
"repeatTitle": "Вид повторение",
655660
"headerTitle": "Повтори събитието",
@@ -658,18 +663,35 @@ if (kendo.ui.MobileRecurrenceEditor) {
658663
"never": "Никога",
659664
"after": "След...",
660665
"on": "На..."
661-
}
666+
},
667+
"never": "Никога",
668+
"after": "Приключи повторенията след",
669+
"on": "Приключи повторенията на"
670+
},
671+
"daily": {
672+
"interval": ""
673+
},
674+
"hourly": {
675+
"interval": ""
676+
},
677+
"weekly": {
678+
"interval": ""
662679
},
663680
"monthly": {
681+
"interval": "",
664682
"repeatBy": "Повтори според: ",
665683
"dayOfMonth": "Дата от месеца",
666684
"dayOfWeek": "Ден от седмицата",
667-
"every": "Всеки"
685+
"repeatEvery": "Повтори всеки",
686+
"every": "Всеки",
687+
"day": "Ден "
668688
},
669689
"yearly": {
690+
"interval": "",
670691
"repeatBy": "Повтори според: ",
671692
"dayOfMonth": "Дата от месеца",
672693
"dayOfWeek": "Ден от седмицата",
694+
"repeatEvery": "Повтори всеки: ",
673695
"every": "Всеки",
674696
"month": "Месец",
675697
"day": "Ден"

src/messages/kendo.messages.en-AU.js

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,7 @@ if (kendo.ui.RecurrenceEditor) {
507507
kendo.ui.RecurrenceEditor.prototype.options.messages =
508508
$.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
509509
"repeat": "Repeat",
510+
"recurrenceEditorTitle": "Recurrence editor",
510511
"frequencies": {
511512
"never": "Never",
512513
"hourly": "Hourly",
@@ -571,6 +572,8 @@ $.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
571572
if (kendo.ui.MobileRecurrenceEditor) {
572573
kendo.ui.MobileRecurrenceEditor.prototype.options.messages =
573574
$.extend(true, kendo.ui.MobileRecurrenceEditor.prototype.options.messages, kendo.ui.RecurrenceEditor.prototype.options.messages, {
575+
"cancel": "Cancel",
576+
"update": "Save",
574577
"endTitle": "Repeat ends",
575578
"repeatTitle": "Repeat pattern",
576579
"headerTitle": "Repeat event",
@@ -579,18 +582,35 @@ if (kendo.ui.MobileRecurrenceEditor) {
579582
"never": "Never",
580583
"after": "After...",
581584
"on": "On..."
582-
}
585+
},
586+
"never": "Never",
587+
"after": "End repeat after",
588+
"on": "End repeat on"
589+
},
590+
"daily": {
591+
"interval": ""
592+
},
593+
"hourly": {
594+
"interval": ""
595+
},
596+
"weekly": {
597+
"interval": ""
583598
},
584599
"monthly": {
600+
"interval": "",
585601
"repeatBy": "Repeat by: ",
586602
"dayOfMonth": "Day of the month",
587603
"dayOfWeek": "Day of the week",
588-
"every": "Every"
604+
"repeatEvery": "Repeat every",
605+
"every": "Every",
606+
"day": "Day "
589607
},
590608
"yearly": {
609+
"interval": "",
591610
"repeatBy": "Repeat by: ",
592611
"dayOfMonth": "Day of the month",
593612
"dayOfWeek": "Day of the week",
613+
"repeatEvery": "Repeat every: ",
594614
"every": "Every",
595615
"month": "Month",
596616
"day": "Day"

src/messages/kendo.messages.en-CA.js

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@ if (kendo.ui.RecurrenceEditor) {
518518
kendo.ui.RecurrenceEditor.prototype.options.messages =
519519
$.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
520520
"repeat": "Repeat",
521+
"recurrenceEditorTitle": "Recurrence editor",
521522
"frequencies": {
522523
"never": "Never",
523524
"hourly": "Hourly",
@@ -583,6 +584,8 @@ $.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
583584
if (kendo.ui.MobileRecurrenceEditor) {
584585
kendo.ui.MobileRecurrenceEditor.prototype.options.messages =
585586
$.extend(true, kendo.ui.MobileRecurrenceEditor.prototype.options.messages, kendo.ui.RecurrenceEditor.prototype.options.messages, {
587+
"cancel": "Cancel",
588+
"update": "Save",
586589
"endTitle": "Repeat ends",
587590
"repeatTitle": "Repeat pattern",
588591
"headerTitle": "Repeat event",
@@ -591,18 +594,35 @@ if (kendo.ui.MobileRecurrenceEditor) {
591594
"never": "Never",
592595
"after": "After...",
593596
"on": "On..."
594-
}
597+
},
598+
"never": "Never",
599+
"after": "End repeat after",
600+
"on": "End repeat on"
601+
},
602+
"daily": {
603+
"interval": ""
604+
},
605+
"hourly": {
606+
"interval": ""
607+
},
608+
"weekly": {
609+
"interval": ""
595610
},
596611
"monthly": {
612+
"interval": "",
597613
"repeatBy": "Repeat by: ",
598614
"dayOfMonth": "Day of the month",
599615
"dayOfWeek": "Day of the week",
600-
"every": "Every"
616+
"repeatEvery": "Repeat every",
617+
"every": "Every",
618+
"day": "Day "
601619
},
602620
"yearly": {
621+
"interval": "",
603622
"repeatBy": "Repeat by: ",
604623
"dayOfMonth": "Day of the month",
605624
"dayOfWeek": "Day of the week",
625+
"repeatEvery": "Repeat every: ",
606626
"every": "Every",
607627
"month": "Month",
608628
"day": "Day"

src/messages/kendo.messages.en-GB.js

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ $.extend(true, kendo.ui.ColumnMenu.prototype.options.messages,{
4242
"unlock": "Unlock Column",
4343
"stick" : "Stick Column",
4444
"unstick": "Unstick Column",
45-
"setColumnPosition": "Set Column Position"
45+
"setColumnPosition": "Set Column Position",
46+
"apply": "Apply",
47+
"reset": "Reset"
4648
});
4749
}
4850

@@ -562,6 +564,7 @@ if (kendo.ui.RecurrenceEditor) {
562564
kendo.ui.RecurrenceEditor.prototype.options.messages =
563565
$.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
564566
"repeat": "Repeat",
567+
"recurrenceEditorTitle": "Recurrence editor",
565568
"frequencies": {
566569
"never": "Never",
567570
"hourly": "Hourly",
@@ -627,6 +630,8 @@ $.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
627630
if (kendo.ui.MobileRecurrenceEditor) {
628631
kendo.ui.MobileRecurrenceEditor.prototype.options.messages =
629632
$.extend(true, kendo.ui.MobileRecurrenceEditor.prototype.options.messages, kendo.ui.RecurrenceEditor.prototype.options.messages, {
633+
"cancel": "Cancel",
634+
"update": "Save",
630635
"endTitle": "Repeat ends",
631636
"repeatTitle": "Repeat pattern",
632637
"headerTitle": "Repeat event",
@@ -635,18 +640,35 @@ if (kendo.ui.MobileRecurrenceEditor) {
635640
"never": "Never",
636641
"after": "After...",
637642
"on": "On..."
638-
}
643+
},
644+
"never": "Never",
645+
"after": "End repeat after",
646+
"on": "End repeat on"
647+
},
648+
"daily": {
649+
"interval": ""
650+
},
651+
"hourly": {
652+
"interval": ""
653+
},
654+
"weekly": {
655+
"interval": ""
639656
},
640657
"monthly": {
658+
"interval": "",
641659
"repeatBy": "Repeat by: ",
642660
"dayOfMonth": "Day of the month",
643661
"dayOfWeek": "Day of the week",
644-
"every": "Every"
662+
"repeatEvery": "Repeat every",
663+
"every": "Every",
664+
"day": "Day "
645665
},
646666
"yearly": {
667+
"interval": "",
647668
"repeatBy": "Repeat by: ",
648669
"dayOfMonth": "Day of the month",
649670
"dayOfWeek": "Day of the week",
671+
"repeatEvery": "Repeat every: ",
650672
"every": "Every",
651673
"month": "Month",
652674
"day": "Day"

src/messages/kendo.messages.en-US.js

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ $.extend(true, kendo.ui.ColumnMenu.prototype.options.messages,{
4242
"unlock": "Unlock Column",
4343
"stick" : "Stick Column",
4444
"unstick": "Unstick Column",
45-
"setColumnPosition": "Set Column Position"
45+
"setColumnPosition": "Set Column Position",
46+
"apply": "Apply",
47+
"reset": "Reset"
4648
});
4749
}
4850

@@ -585,6 +587,7 @@ if (kendo.ui.RecurrenceEditor) {
585587
kendo.ui.RecurrenceEditor.prototype.options.messages =
586588
$.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
587589
"repeat": "Repeat",
590+
"recurrenceEditorTitle": "Recurrence editor",
588591
"frequencies": {
589592
"never": "Never",
590593
"hourly": "Hourly",
@@ -650,6 +653,8 @@ $.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
650653
if (kendo.ui.MobileRecurrenceEditor) {
651654
kendo.ui.MobileRecurrenceEditor.prototype.options.messages =
652655
$.extend(true, kendo.ui.MobileRecurrenceEditor.prototype.options.messages, kendo.ui.RecurrenceEditor.prototype.options.messages, {
656+
"cancel": "Cancel",
657+
"update": "Save",
653658
"endTitle": "Repeat ends",
654659
"repeatTitle": "Repeat pattern",
655660
"headerTitle": "Repeat event",
@@ -658,18 +663,35 @@ if (kendo.ui.MobileRecurrenceEditor) {
658663
"never": "Never",
659664
"after": "After...",
660665
"on": "On..."
661-
}
666+
},
667+
"never": "Never",
668+
"after": "End repeat after",
669+
"on": "End repeat on"
670+
},
671+
"daily": {
672+
"interval": ""
673+
},
674+
"hourly": {
675+
"interval": ""
676+
},
677+
"weekly": {
678+
"interval": ""
662679
},
663680
"monthly": {
681+
"interval": "",
664682
"repeatBy": "Repeat by: ",
665683
"dayOfMonth": "Day of the month",
666684
"dayOfWeek": "Day of the week",
667-
"every": "Every"
685+
"repeatEvery": "Repeat every",
686+
"every": "Every",
687+
"day": "Day "
668688
},
669689
"yearly": {
690+
"interval": "",
670691
"repeatBy": "Repeat by: ",
671692
"dayOfMonth": "Day of the month",
672693
"dayOfWeek": "Day of the week",
694+
"repeatEvery": "Repeat every: ",
673695
"every": "Every",
674696
"month": "Month",
675697
"day": "Day"

0 commit comments

Comments
 (0)