Unplanned
Last Updated: 07 Mar 2022 08:29 by n/a
n/a
Created on: 07 Mar 2022 08:29
Category: Form
Type: Feature Request
3
Enable HtmlAttributes() on the Form Group

At moment the Form Group does not support the HtmlAttributes() method. Is it possible to implement?

For example:

@(Html.Kendo().Form<Model>()
  .Name("exampleForm")
  ...
  .Items(items =>
  {
    items.AddGroup()
      .HtmlAttributes(...)
      .Items(i => {...});
  })
)

0 comments