Skip to content

Commit cc50532

Browse files
committed
Sync with Kendo UI Professional
1 parent 0fc760c commit cc50532

File tree

14 files changed

+1407
-22
lines changed

14 files changed

+1407
-22
lines changed

docs-aspnet/backwards-compatibility/2025-backwards-compatibility.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ The [`IconClass()`](/api/kendo.mvc.ui.fluent/popoveractionbuilder#iconclasssyste
5151
</actions>
5252
</kendo-popover>
5353
```
54+
{% else %}
55+
56+
### Kendo.Mvc.Export
57+
58+
As of the Q2 2025 release, the `Telerik.Core.Export` package targets .NET Framework 4.6.2 in addition to .NET. You can the `Telerik.Core.Export` package in ASP.NET MVC5 applications, as well as in .NET applications. The old `Kendo.Mvc.Export` assembly will no longer be distributed.
59+
5460
{% endif %}
5561

5662
### Telerik.Zip

docs-aspnet/html-helpers/data-management/grid/export/server-export.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For a runnable example, refer to the [demo on Server export by the Grid](https:/
1717

1818
To enable the Server export option of the grid:
1919

20-
1. Include a reference to the {% if site.core %} Telerik.Core.Export.nupkg from the private Telerik NuGet feed{% else %}`Kendo.Mvc.Export.dll` and `Telerik.Documents.SpreadsheetStreaming.dll` dlls available in the product's installation folder - `~installationFolder\export\binaries\net<version>`{% endif %}.
20+
1. Include a reference to the {% if site.core %} Telerik.Core.Export.nupkg from the private Telerik NuGet feed{% else %}Telerik.Core.Export.nupkg and `Telerik.Documents.SpreadsheetStreaming.dll` dlls available in the product's installation folder - `~installationFolder\export\binaries\net<version>`{% endif %}.
2121
1. Include a form HTML element that would post to an ActionMethod on the server-side.
2222
```
2323
{% if site.core %}
@@ -227,13 +227,13 @@ To enable the Server export option of the grid:
227227
228228
{% if site.core %}
229229
```C#
230-
using Kendo.Mvc.Export;
230+
using Telerik.Core.Export;
231231
using Telerik.Documents.SpreadsheetStreaming;
232232
using Microsoft.AspNetCore.Mvc;
233233
```
234234
{% else %}
235235
```C#
236-
using Kendo.Mvc.Export;
236+
using Telerik.Core.Export;
237237
using Telerik.Documents.SpreadsheetStreaming;
238238
```
239239
{% endif%}

docs-aspnet/html-helpers/editors/editor/import-export.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ position: 10
88

99
# Import and Export of Documents
1010

11-
As of the R1 2017 release, the Telerik UI Editor for ASP.NET MVC enables you to import and export various types of documents through the dedicated `Kendo.Mvc.Export` assembly.
11+
As of the R1 2017 release, the Telerik UI Editor for ASP.NET MVC enables you to import and export various types of documents through the dedicated `Kendo.Mvc.Export` assembly. In the Q2 2025 release, `Kendo.Mvc.Export` has been replaced by the `Telerik.Core.Export` NuGet package.
1212

1313
Along with the server-side integration of the [Telerik Document Processing](https://docs.telerik.com/devtools/document-processing/introduction) suite, the new `ExportAs` and `Import` tools which utilize the import and export functionality are available.
1414

1515
![{{ site.product_short }} Editor importing and exporting animation](import-export-animation.gif)
1616

1717
## Requirements
1818

19-
The import and export capabilities are bundled as part of the [UI for ASP.NET MVC suite]({% slug overview_aspnetmvc6_aspnetmvc %}). You can get the required assemblies from the `telerik.ui.for.aspnetmvc.<version>.zip` archive that contains a `Kendo.MVC.Export` folder with the assemblies for both .NET 4.0 and .NET 4.5 versions.
19+
The import and export capabilities are bundled as part of the [UI for ASP.NET MVC suite]({% slug overview_aspnetmvc6_aspnetmvc %}). You can get the required assemblies from the `telerik.ui.for.aspnetmvc.<version>.zip` archive that contains a `Kendo.MVC.Export` folder with the assemblies for both .NET 4.0 and .NET 4.5 versions. For product versions after Q2 2025, use the `Telerik.Core.Export` NuGet package.
2020

2121
To start using the import and export functionality:
2222

23-
1. Add a reference in your project to the `Kendo.MVC.Export` assembly.
23+
1. Add a reference in your project to the `Kendo.MVC.Export` assembly, or install the `Telerik.Core.Export` NuGet package for product versions after Q2 2025.
2424
1. Add references in your project to the required [Telerik Document Processing libraries](https://docs.telerik.com/devtools/document-processing/introduction#libraries).
2525

2626
## Exporting Content from the Editor
@@ -71,7 +71,7 @@ To start using the import and export functionality:
7171
1. Implement the action method in the corresponding controller.
7272
7373
```C#
74-
using Kendo.Mvc.Export;
74+
using Telerik.Core.Export;
7575
...
7676
[HttpPost]
7777
public ActionResult Export(EditorExportData data)
@@ -121,7 +121,7 @@ To start using the import and export functionality:
121121
1. Implement the action method in the corresponding controller.
122122
123123
```C#
124-
using Kendo.Mvc.Export;
124+
using Telerik.Core.Export;
125125
...
126126
public ActionResult Import(HttpPostedFileBase file)
127127
{
@@ -150,7 +150,7 @@ To start using the import and export functionality:
150150
The Document Processing Library provides settings for the import and export which enables you to fine-tune the way the content is handled in the supported document types. The following example demonstrates how to use [`HtmlImportSettings`](https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/formats-and-conversion/html/settings) so that you can process HTML images before they are exported to `RadFlowDocument`.
151151
152152
```C#
153-
using Kendo.Mvc.Export;
153+
using Telerik.Core.Export;
154154
using Telerik.Windows.Documents.Flow.FormatProviders.Html;
155155
...
156156
[HttpPost]
@@ -185,7 +185,7 @@ using Telerik.Windows.Documents.Flow.FormatProviders.Html;
185185
The following example demonstrates how to configure the import capabilities so that images are generated with inline base64 data in the HTML `<img>` tag. For more information on each setting that is supported by `EditorImportSettings`, refer to the [documentation on HTML export settings](https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/formats-and-conversion/html/settings#export-settings).
186186

187187
```C#
188-
using Kendo.Mvc.Export;
188+
using Telerik.Core.Export;
189189
using Telerik.Windows.Documents.Flow.FormatProviders.Html;
190190
...
191191
public ActionResult Import(HttpPostedFileBase file)

docs-aspnet/installation/installation-options/msi-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ You will find the following in the {{ site.product }} installation directory:
8080
* `vsdoc`&mdash;The intellisense definitions for the Kendo combined scripts.
8181
* `pdfviewer`&mdash;The `Telerik.Web.PDF` assembly from the Telerik Document Processing library and its dependencies.
8282
* `dpl`&mdash;The NuGet packages for the Telerik Document Processing library.
83-
* `export`&mdash;The `Kendo.Mvc.Export` assembly that allows exporting `IEnumerable` sources to XLSX and CSV formats.
83+
* `export`&mdash;The `Telerik.Core.Export` NuGet package that allows exporting `IEnumerable` sources to XLSX and CSV formats.
8484
* `license-agreements`&mdash;End-user license agreements files.
8585
* `spreadsheet`&mdash;The `Telerik.Web.Spreadsheet` assembly from the Telerik Document Processing library and its dependencies.
8686
{% if site.core %}

docs/api/javascript/ui/aiprompt.md

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -239,15 +239,32 @@ The function to get the output from the AI service response.
239239
#### Example
240240
<div id="aiprompt"></div>
241241
<script>
242-
$("#aiprompt").kendoAIPrompt({
243-
service: {
244-
url: "/api/llm",
245-
outputGetter: function(response) {
246-
return response.output;
247-
}
242+
$("#aiprompt").kendoAIPrompt({
243+
service: {
244+
url: "/api/llm",
245+
outputGetter: function(response) {
246+
return response.output;
248247
}
248+
}
249+
250+
### showOutputSubtitleTooltip `Boolean` *(default: false)*
251+
252+
Controls whether the subtitle of the card in the output view displays a tooltip containing the full content of the subtitle, which is the prompt used to generate the output.
253+
254+
#### Example
255+
<div id="aiprompt"></div>
256+
<script>
257+
$("#aiprompt").kendoAIPrompt({
258+
activeView: 1,
259+
showOutputSubtitleTooltip: true,
260+
promptOutputs: [
261+
{ prompt: "A very long subtitle that will be shown in a tooltip", output: "Description 1" },
262+
{ prompt: "Another long subtitle for tooltip demonstration", output: "Description 2" }
263+
]
249264
});
250265
</script>
266+
267+
251268
### showOutputRating `Boolean` *(default: true)*
252269

253270
Specifies if the output rating should be displayed on the output card.

0 commit comments

Comments
 (0)