Unplanned
Last Updated: 27 Mar 2024 06:32 by Bo
Created by: Bo
Comments: 0
Category: Form
Type: Feature Request
1
At this stage, the Form does not provide an option that adds a custom attribute to the labels (for example, a class). Is it possible to implement an "items.label.attributes" option, similar to the items.attributes?
Unplanned
Last Updated: 17 May 2023 17:02 by Chiel
Created by: Chiel
Comments: 0
Category: Form
Type: Feature Request
1
Expose the ability to add a built-in password editor for the Form.
Unplanned
Last Updated: 16 Mar 2023 05:47 by Chiel
Add a configuration option for setting all labels as floating labels.
Duplicated
Last Updated: 13 Mar 2023 14:32 by ADMIN
Currently, the Display[Name = '"..."] could not be used to render the text of the labels in the Form. Please add support, so the DataAnnotations to be used in the Form labels. 
Completed
Last Updated: 24 Oct 2022 12:05 by ADMIN
Release R1.2023-Increment.1(09.Nov.2022)
Currently, the Telerik ASP.NET Core Form component does not display the name of the property that is set through the "DisplayAttribute.Name Property". Is it possible to implement it?
Unplanned
Last Updated: 02 Jun 2022 17:07 by Jon
Created by: Stefania
Comments: 1
Category: Form
Type: Feature Request
23
Allow configuring the Upload component through the .Items configuration:
.Items(items =>
{    
    items.Add()
        .Field(f => f.Type)
        .Label(l => l.Text("Type:"))
        .Editor(e =>
        {
            e.Upload() 
        }
}

Unplanned
Last Updated: 07 Mar 2022 08:29 by n/a
Created by: n/a
Comments: 0
Category: Form
Type: Feature Request
3

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 => {...});
  })
)

Completed
Last Updated: 07 Sep 2021 06:17 by ADMIN
Release 2021.R3
Created by: Bas
Comments: 3
Category: Form
Type: Feature Request
48

Add support for hidden fields. There could be an alternative way of adding them to the Items collection, e.g.

.AddHidden()

Consider the cases when the hidden field is bound to a model field and when it isn't bound to the model. The latter could be a scenario involving antiForgeryTokens: 

<input type="hidden" name="__RequestVerificationToken" value="token" />

In both cases you should be able to set the value of the hidden field programmatically and submit it with the form.

Unplanned
Last Updated: 13 Aug 2021 06:40 by ADMIN
Created by: Muttley
Comments: 0
Category: Form
Type: Feature Request
0

The Kendo Form should include native ListBox editor support including joining and swapping items between two ListBox's using ConnectWith.

To use a ListBox in the Kendo Form currently requires a custom editor which is overly complex.

Completed
Last Updated: 16 Mar 2021 07:43 by ADMIN
Created by: Edwin
Comments: 1
Category: Form
Type: Feature Request
3

Provide built-in integration of RadioButton / RadioGroup in the Form

i.e. :     .Editor(e =>
                    {
                        e.RadioButton();
                    });
            });
Unplanned
Last Updated: 26 May 2020 05:13 by ADMIN
Created by: Javier
Comments: 0
Category: Form
Type: Feature Request
3
Currently, orientation can only be set on the entire Form. In some scenarios, it is required to have a single Form with multiple groups, where each group can have a different orientation setting.

Provide an option to configure orientation per groups.