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: 28 Apr 2021 07:36 by ADMIN

Bug report

RadioGroup Validation fails always when Component is bound to Model

Reproduction of the problem

  1. Define a FormViewModel and set its data annotation to [Required]
  2. Initialize a Form and pass it the FormViewModel
  3. In the Form:
  • set up Validation
  • define an Item that uses the RadioGroup Editor
  1. Run the application choose a RadioGroup option and submit the Form

Current behavior

All the inputs of the RadioGroup Component get the data-val-required property and validation always fails

Expected/desired behavior

The RadioGroup's Validation should succeed, if one of the options is selected

Environment

  • Kendo UI version: 2021.1.330
  • Browser: [all ]
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();
                    });
            });
Completed
Last Updated: 08 Jun 2020 12:15 by ADMIN
Release 2020.R2.SP.next

Form with MultiSelect editor does not submit selected values in the MultiSelect.

 

 

Completed
Last Updated: 04 Jun 2020 13:22 by ADMIN
Release 2020.R2.SP.next
Created by: Lance
Comments: 0
Category: Form
Type: Bug Report
0
DropDownList currently cannot be configured as an editor through the Items configuration of the Form.
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.
1 2