Unplanned
Last Updated: 16 Mar 2021 15:22 by ADMIN

Hi,

Is there any example for a jquery button changing the component inside the form?

For example

1. press a button > add a new input row in the form

2. press a button > change the component in one row in form

 

Thanks.

 

Completed
Last Updated: 20 Nov 2024 14:19 by ADMIN
Release 2025 Q1 (Feb)

Enhancement

Expose a clearButton API configuration that will remove or add the clear button from the Form

Overview

Currently, in order to omit the Clear Button from the Form, a programmatical or styling approach should be embarked. However, based on demand, client would find it more intuitive if this operation can be performed through a built-in configuration.

E.g:

<script>
    $("#myForm").kendoForm({
        formData: {
            ID: 1,
            Name: "Ivan",
            Address: "Sofia"
        },
        clearButton: false,
    });
</script>
Completed
Last Updated: 14 Oct 2021 10:31 by ADMIN
Created by: James
Comments: 3
Category: Form
Type: Feature Request
2

Please support the plain TextBox as a valid editor within form configuration.  There are times when I would like to put a number into a plain textbox and apply custom code to that rather than use a NumericTextBox.

EG:

{ field: "uploaded", label: "A Label", validation: { required: true }, colSpan: 3, editor: "TextBox" }

Unplanned
Last Updated: 15 Jun 2021 10:28 by ADMIN
Created by: Cypher
Comments: 0
Category: Form
Type: Feature Request
2
Add support for the ButtonGroup as Custom Editor and update the ImageEditor to use it. This way the Orientation in the Crop pane can be programmatically set using the model set method.
Unplanned
Last Updated: 13 Oct 2021 07:02 by ADMIN
Created by: Carlos
Comments: 0
Category: Form
Type: Feature Request
2
Currently Kendo UI for jQuery Form group appearance may be customized by custom CSS. The following Dojo snippet shows group customization to resemble Bootstrap 4 cards. But it would be helpful to provide a property named for example groupAttributes, which sets CSS classes and other HTML attributes to style the generated group sections. This would allow setting Bootstrap 4's card classes.
Unplanned
Last Updated: 25 Apr 2024 13:12 by Ross
Created by: Bradley
Comments: 1
Category: Form
Type: Feature Request
2
Add a Form method to reset the validation on the fields, similar to the Validator reset method.
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/
Unplanned
Last Updated: 17 Feb 2021 15:15 by ADMIN
Created by: Mark
Comments: 0
Category: Form
Type: Feature Request
1

It will be good to have a method in the Form API to get or set the Form model. For example, it could be:

var form = $("#form").getKendoForm();
var model = form.model();
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.
Unplanned
Last Updated: 25 Oct 2021 06:39 by ADMIN
Created by: Robert
Comments: 0
Category: Form
Type: Feature Request
1
Please provide support for the Upload as built-in editor in the Form.
Unplanned
Last Updated: 05 Nov 2021 13:41 by ADMIN
Created by: Hans-Jürgen
Comments: 0
Category: Form
Type: Feature Request
1

Hi Team,

I would like to request adding a simple checkbox into the items.editor instead of just the switch.  This would be great if the k-checkbox-label was also included with the editor.

Currently I have a solution in which I can create a checkbox editor, but it could be so much better if I didn't have to write an extra editor function for a simple checkbox.

Thank you for your consideration

Unplanned
Last Updated: 09 Jun 2023 14:13 by ADMIN
Created by: Zion
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]
Unplanned
Last Updated: 16 Jan 2023 11:16 by Aleksandr
Created by: Aleksandr
Comments: 0
Category: Form
Type: Feature Request
1
Currently, a Form should be initialized from a <form> tag. When the Form is created from <div> tag it is not submitted and the submit event is not fired. I would like to have the possibility to initialize and submit a Form initialised from <div>.
Unplanned
Last Updated: 04 Oct 2022 14:29 by Brian
Created by: Brian
Comments: 0
Category: Form
Type: Feature Request
1

Hi Team,

I would like to request that when the Kendo UI Form submits a checkbox boolean value to pass as True/False instead of On/Off. Currently, I am using a custom editor which will perform the true/false submission.

Thank you!

Unplanned
Last Updated: 18 Nov 2024 08:30 by Thomas
Created by: Thomas
Comments: 0
Category: Form
Type: Feature Request
1

Please add support for nesting groups in the form-control. 

As written on your page https://docs.telerik.com/kendo-ui/controls/form/groups nesting of groups is not supported.  

As we are developing a highly configurable software we have the need to edit properties of json-objects via UI for the needs of our customers. A schema for validating fields and so on exists, but unfortunately we cannot use "form"-Control because the objects do have nested objects in multiple hierachy levels. 

Therefore nesting of groups would be really great.

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

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.

1 2