Skip to content

Commit 201e376

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 4a980be commit 201e376

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

docs-aspnet/_tools/check-redirects.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ err_count=0
1010

1111
# List of URLs to check: <from> <to>
1212
urls="
13-
/kendo-ui/api/wrappers/jsp /kendo-ui/api/jsp/actionSheet
13+
/kendo-ui/api/wrappers/jsp /kendo-ui/api/jsp/actionsheet/item
1414
/kendo-ui/api/web/grid /kendo-ui/api/javascript/ui/grid
1515
/kendo-ui/api/mobile/application /kendo-ui/api/javascript/mobile/application
1616
/kendo-ui/api/mobile/scrollview /kendo-ui/api/javascript/mobile/ui/scrollview

docs-aspnet/html-helpers/editors/captcha/audio.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ The Telerik UI Catpcha server-side provider creates an audio file based on the c
4242
4343
```
4444
function audioHandler(args) {
45-
args.success("@Url.Action("Audio")?captchaId=" + args.data.CaptchaID);
45+
//pass the name of the action "Audio" and the name of the controller (in this case "Captcha") to the Url.Action method. Add captchaId as a parameter:
46+
args.success("@Url.Action("Audio", "Captcha")?captchaId=" + args.data.CaptchaID);
4647
}
4748
```
4849

docs-aspnet/installation/migrating.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ There are couple of differences worth mentioning to ease your migration process.
3131
1. MVC Grid server rendered templates should transfer to client rendered templates in Core MVC Grid. Therefore, you will now use `.HeaderTemplate()` instead of `.ClientHeaderTemplate()`.
3232

3333
2. We have a Blog post covering common code-behind steps:
34-
- [Migrate to ASP.NET Core MVC from ASP.NET Framework MVC](https://www.telerik.com/blogs/migrate-aspnet-core-mvc-aspnet-framework-mvc)
34+
35+
[Migrate to ASP.NET Core MVC from ASP.NET Framework MVC](https://www.telerik.com/blogs/migrate-aspnet-core-mvc-aspnet-framework-mvc)
3536

3637
3. The rest are syntax sugar differences caused by the frameworks themselves. For instance, here is a Validation action definition of the Upload component in MVC:
3738
```C#
@@ -47,15 +48,17 @@ And this is the equivalent implementation in Core MVC:
4748
```
4849

4950
4. The same is true for the **Startup.cs** file:
50-
- [JSON serialization in Core](https://docs.telerik.com/aspnet-core/installation/json-serialization)
51+
52+
[JSON serialization in Core](https://docs.telerik.com/aspnet-core/installation/json-serialization)
5153

5254
5. You can check this nice MSDN article for general points when migrating:
53-
- [Migrate from ASP.NET MVC to ASP.NET Core MVC](https://learn.microsoft.com/en-us/aspnet/core/migration/mvc?view=aspnetcore-7.0)
55+
56+
[Migrate from ASP.NET MVC to ASP.NET Core MVC](https://learn.microsoft.com/en-us/aspnet/core/migration/mvc?view=aspnetcore-7.0)
5457

5558

5659
## Migrating from Another Technology
5760

5861
If you are coming from another Telerik UI toolset, we have resources addressing this situation as well:
5962
- [From Web Forms to Core](https://www.telerik.com/blogs/review-of-telerik-toolsets-for-aspnet-web-forms-core)
6063
- [From Web Forms to Blazor](https://www.telerik.com/blogs/review-of-telerik-toolsets-for-asp.net-web-forms-and-blazor-part-1)
61-
- [From MVC to Blazor](https://www.telerik.com/blogs/migrating-mvc-to-blazor)
64+
- [From MVC to Blazor](https://www.telerik.com/blogs/migrating-mvc-to-blazor)

docs/_tools/check-redirects.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ err_count=0
1010

1111
# List of URLs to check: <from> <to>
1212
urls="
13-
/kendo-ui/api/wrappers/jsp /kendo-ui/api/jsp/actionSheet
13+
/kendo-ui/api/wrappers/jsp /kendo-ui/api/jsp/actionsheet/item
1414
/kendo-ui/api/web/grid /kendo-ui/api/javascript/ui/grid
1515
/kendo-ui/api/mobile/application /kendo-ui/api/javascript/mobile/application
1616
/kendo-ui/api/mobile/scrollview /kendo-ui/api/javascript/mobile/ui/scrollview

0 commit comments

Comments
 (0)