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]

Unplanned
Last Updated: 09 Jun 2023 14:13 by ADMIN
Created by: Bernard
Comments: 2
Category: Form
Type: Bug Report
1

Bug report

A Form group label encoded option cannot be set to false.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/eGEqEbEw/8

Current behavior

The HTML is not decoded

Expected/desired behavior

The HTML in the text configuration should be decoded

Environment

  • Kendo UI version: 2022.2.621
  • Browser: [all]
Completed
Last Updated: 04 Feb 2022 11:29 by ADMIN
Release 2022.R1.SP.next

Bug report

An error is thrown when you try to clear a Form with an Upload or any other widget that does not have a "value" method.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/OWOPiteD/3.
  2. Hit the clear button.

Workaround: https://dojo.telerik.com/@iankodj/oLAKiCuK/2

Current behavior

An error is thrown when you hit the clear button.

Expected/desired behavior

No error should be thrown when the clear button is hit.

Environment

  • Kendo UI version: 2021.3.914
  • Browser: [all]
Declined
Last Updated: 04 Feb 2022 08:53 by ADMIN

Bug report

When a string that could be evaluated as a Date is used in the Form, a DatePicker is rendered instead of TextBox

Reproduction of the problem

  1. Open the Dojo linked here

Current behavior

The fromData for the first field is set as string 'TextBox1: "12/11/1969"', however, the '12/11/1969' could be evaluated as a Date. Thus, the From displays a DatePicker although the field is not explicitly casted to Date.

Expected/desired behavior

When the value is not explicitly set as a Date a TextBox should be rendered in the Form.

Workaround

var MyModel = kendo.data.Model.define({
              fields: {
                  "TextBox1": {
                      type: "string"
                  },
                  "TextBox2": {
                      type: "string"
                  }
              }
          });

Dojo

Environment

  • Kendo UI version: 2021.2.616
  • Browser: [all]
Completed
Last Updated: 13 Sep 2021 11:00 by ADMIN
Release 2021.R3
I have a checkbox group inside a form

Whenever I clear the form with form.clear() or even with the default clear button of the form, the value attribute of the checkboxes becomes empty and from that time I can not work with items of CheckBoxGroup and their value.
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]
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: 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: 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".