Skip to content

EditorTemplateView option does not accept PartialAsync() method #8070

@kendo-bot

Description

@kendo-bot

Bug report

When loading an editor through a partial View using EditorTemplateView(await Html.PartialAsync("PartialViewName")), the following error occurs:

The 'await' operator can only be used within an async lambda expression. Consider marking this lambda expression with the 'async' modifier.

Reproduction of the problem

@(Html.Kendo().Form<UserViewModel>()
     .Name("myForm")
     .Items(items =>
     {
         items.Add().Field(f => f.Username).EditorTemplateView(await Html.PartialAsync("PartialViewName"));
      })
)

Expected/desired behavior

The EditorTemplateView() must accept Html.PartialAsync("PartialViewName").

Environment

  • **Telerik UI for ASP.NET Core version: 2024.4.1112
  • **Browser: [all]

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions