Unplanned
Last Updated: 19 May 2025 13:39 by David
Created by: David
Comments: 0
Category: Form
Type: Bug Report
0

Bug report

Regression introduced in 2024.4.1112.

Reproduction of the problem

  1. Run this Dojo example - https://dojo.telerik.com/lhLEDEve

Current behavior

The gutter values are ignored:

$("#exampleform").kendoForm({
                formData: {
                    FirstName: "John",
                    LastName: "Doe",
                    Email: "john.doe@email.com",
                    Country: "1",
                    City: "Strasbourg",
                    AddressLine: ""
                },
                layout: "grid",
                grid: {
                    cols: 2,
                    **gutter: 50**
                },
                items: [
                    {
                        type: "group",
                        label: "Personal Information",
                        layout: "grid",
                        grid: { cols: 1, **gutter: 50** },
                 //...

Expected Behavior

The gutter values are applied to the Form.

Workaround:

Set the values through CSS:

<style>
 /*columns gap */
  .k-form .k-form-layout {
    column-gap: 50px;
  }
 /*rows margin*/
  .k-form-md .k-form-field, .k-form-md .k-form-buttons {
    margin-top: 50px;
  }
</style>

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Unplanned
Last Updated: 18 Jun 2020 12:43 by ADMIN
Created by: Waz
Comments: 0
Category: Form
Type: Feature Request
4
It would be nice if the Form component provides support for Custom Editor Templates for model bound properties decorated with the UIHint() attribute, similar to the ASP.NET MVC Grid.
Unplanned
Last Updated: 28 May 2020 12:28 by ADMIN
Created by: Bart
Comments: 0
Category: Form
Type: Feature Request
1
Add a method dedicated to placing the focus on the first editor in the Form.