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/backwards-compatibility/2025-backwards-compatibility.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,12 @@ The [`IconClass()`](/api/kendo.mvc.ui.fluent/popoveractionbuilder#iconclasssyste
51
51
</actions>
52
52
</kendo-popover>
53
53
```
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.
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/data-management/grid/export/server-export.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ For a runnable example, refer to the [demo on Server export by the Grid](https:/
17
17
18
18
To enable the Server export option of the grid:
19
19
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 %}.
21
21
1. Include a form HTML element that would post to an ActionMethod on the server-side.
22
22
```
23
23
{% if site.core %}
@@ -227,13 +227,13 @@ To enable the Server export option of the grid:
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/editors/editor/import-export.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,19 @@ position: 10
8
8
9
9
# Import and Export of Documents
10
10
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.
12
12
13
13
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.
14
14
15
15

16
16
17
17
## Requirements
18
18
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.
20
20
21
21
To start using the import and export functionality:
22
22
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.
24
24
1. Add references in your project to the required [Telerik Document Processing libraries](https://docs.telerik.com/devtools/document-processing/introduction#libraries).
25
25
26
26
## Exporting Content from the Editor
@@ -71,7 +71,7 @@ To start using the import and export functionality:
71
71
1. Implement the action method in the corresponding controller.
72
72
73
73
```C#
74
-
using Kendo.Mvc.Export;
74
+
using Telerik.Core.Export;
75
75
...
76
76
[HttpPost]
77
77
public ActionResult Export(EditorExportData data)
@@ -121,7 +121,7 @@ To start using the import and export functionality:
121
121
1. Implement the action method in the corresponding controller.
122
122
123
123
```C#
124
-
using Kendo.Mvc.Export;
124
+
using Telerik.Core.Export;
125
125
...
126
126
public ActionResult Import(HttpPostedFileBase file)
127
127
{
@@ -150,7 +150,7 @@ To start using the import and export functionality:
150
150
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`.
151
151
152
152
```C#
153
-
using Kendo.Mvc.Export;
153
+
using Telerik.Core.Export;
154
154
using Telerik.Windows.Documents.Flow.FormatProviders.Html;
155
155
...
156
156
[HttpPost]
@@ -185,7 +185,7 @@ using Telerik.Windows.Documents.Flow.FormatProviders.Html;
185
185
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).
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
+
]
249
264
});
250
265
</script>
266
+
267
+
251
268
### showOutputRating `Boolean`*(default: true)*
252
269
253
270
Specifies if the output rating should be displayed on the output card.
0 commit comments