Completed
Last Updated: 01 Jun 2020 09:13 by ADMIN
Release 2020.R2.SP.next
Created by: Anna
Comments: 1
Category: Form
Type: Bug Report
0

Reproduction

  1. Run sample at https://dojo.telerik.com/@GaloisGirl/eConozaR
  2. Click "validate"

Expected result:

  1. Validation result should be displayed  as a boolean

Actual result:

  1. Undefined is displayed

Fix:

Just add return before "validator.validate();" in method "validate".

 

Completed
Last Updated: 02 Jun 2020 05:55 by ADMIN
Created by: Anna
Comments: 1
Category: Form
Type: Feature Request
0

Please document an example of editor as a function.

A simple example could be a password field: https://dojo.telerik.com/@GaloisGirl/ARIGOmUj

Completed
Last Updated: 14 Sep 2020 08:08 by ADMIN
Release 2020.R3

Bug report

When submitting a form, its data is being sent multiple times to the backend.

Check the example on ticket 1468553.

Reproduction of the problem

  1. Open the example attached in ticket 1468553
  2. Click on one of the two buttons and fill the form that appears in the Window
  3. Open the browser's network tab and submit the form.
  4. Multiple requests with the form's data are sent to the controller

Current behavior

Once submitted, the form's data is sent multiple times to the backend

Expected/desired behavior

Form's data should be sent to the controller only once

Environment

  • Kendo UI version: 2020.2.513
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 15 Oct 2020 08:17 by ADMIN
Release 2020.R3.SP.next
Created by: Alexander
Comments: 0
Category: Form
Type: Bug Report
0
kendo.all.js contains function renderHiddenForМvcCheckbox which has non-latin symbol (cyrillic М) and this causes "Uncaught SyntaxError: Invalid or unexpected token" and as a consequence "Uncaught ReferenceError: kendo is not defined" in some cases.
Completed
Last Updated: 10 May 2021 10:53 by ADMIN
Release 2021.R2
Created by: Mikael
Comments: 0
Category: Form
Type: Bug Report
0

Bug report

TypeScript definition missing for kendoForm

Reproduction of the problem

Open the typescript/kendo.all.d.ts file and search for kendoForm

Expected/desired behavior

kendoForm should be defined.

Environment

  • Kendo UI version: 2021.1.119 and 2021.1.224
  • Browser: [all]
Unplanned
Last Updated: 06 Oct 2023 13:42 by Aeong

Enhancement
Form in horizontal orientation does not align the items correctly in the grid layout

Reproduction of the problem

Dojo: https://dojo.telerik.com/oJutUjUH

Current behavior
3rd item with colSpan of 2 does not take the whole available space

Expected/desired behavior

3rd item shall align according to previous items

Environment
Kendo UI version: [all]
jQuery version: [all]
Browser: [all]

Declined
Last Updated: 15 Jul 2021 07:28 by ADMIN
Created by: David
Comments: 2
Category: Form
Type: Feature Request
0
Would be nice to bind the form to a part of my viewModel. For example I am trying to data bind the form to the selected row in a grid which I am setting as selectedItem inside my viewModel.
Unplanned
Last Updated: 27 May 2021 12:48 by ADMIN
Created by: Mikael
Comments: 0
Category: Form
Type: Feature Request
0
Currently, the Form displays the validation messages below the respective fields that failed the validation. It would be nice, if there is an option to show them in a tooltip.
Declined
Last Updated: 02 Jul 2021 05:02 by ADMIN
Created by: Neel
Comments: 1
Category: Form
Type: Feature Request
0

Create a new instance of a Kendo form with an item where the validation's required property is set to true. For example:

<!DOCTYPE html>
<html>
  <head>
    <title>Example Form</title>
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2021.2.616/styles/kendo.default-v2.min.css" />
  </head>
  <body>
    <form id="example"></form>
    <script src="https://kendo.cdn.telerik.com/2021.2.616/js/jquery.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2021.2.616/js/kendo.all.min.js"></script>
    <script>
      $(document).ready(function () {
        var validationSuccess = $("#validation-success");

        $("#example").kendoForm({
          formData: {
            FirstName: ''
          },
          layout: 'grid',
          grid: {
            cols: 2,
            gutter: 16
          },
          items: [
            {
              field: 'FirstName',
              label: 'First Name',
              validation: {
                required: true
              }
            }
          ]
        });
      });
    </script>
  </body>
</html>

The feature request is to send the label value to the validator rather than the field value.

I understand that the required property can take an object, such as:

required: { message: 'First Name is required' }
While there is nothing wrong with this approach, it does require a duplication of effort which can become cumbersome.
1 2