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: 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: 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".

 

Declined
Last Updated: 28 May 2020 08:00 by ADMIN
Created by: James
Comments: 4
Category: Form
Type: Feature Request
0

It would be great if the form configuration allowed for items to be readonly or disabled during setup.  There are times when perhaps some data should not be able to be changed.

I'm having to do tricks such as this for each field I want readonly.

$("#fileSize").data("kendoNumericTextBox").readonly(true);
$("#originalFilename, #title").kendoTextBox({ readonly: true });
Unplanned
Last Updated: 27 May 2020 10:51 by ADMIN

When a form creates a group it uses a fieldset.  It would be great if this fieldset could have an id or class so it can be manipulated easily.

Whilst I could write code to find the Nth fieldset and modify it, it would be much cleaner to allow an id to be set on it.

Completed
Last Updated: 22 May 2020 08:34 by ADMIN
Created by: Christian Storb
Comments: 1
Category: Form
Type: Feature Request
1
The grid in Kendo UI for jQuery offers options for editing its data in a popup dialog.

The popup dialog should be provided as a widget regardless of the grid (or in addition) in the framework. Thus, the edit dialog could be easily implemented by application developers.

Example: https://jsfiddle.net/chstorb/f0x4b6gh/
1 2