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.
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.
RadioGroup Validation fails always when Component is bound to Model
All the inputs of the RadioGroup Component get the data-val-required property and validation always fails
The RadioGroup's Validation should succeed, if one of the options is selected
Provide built-in integration of RadioButton / RadioGroup in the Form
i.e. : .Editor(e =>Form with MultiSelect editor does not submit selected values in the MultiSelect.