Unplanned
Last Updated: 05 Aug 2021 05:56 by ADMIN

Currently, if a user enters into a numeric text box a value that is lower than the "min" or greater than the "max" configuration option, kendo adjusts the value to either min or max. 

There should be a way to disable that.  If the user enters an invalid value we want to give feedback. Currently, there is no way to do this, without messing around with the kendo ui control.

By the way: kendo ui for angular has already implemented an autoCorrect configuration. So please implement this feature for the jquery version too!


Unplanned
Last Updated: 23 Jul 2021 11:12 by ADMIN
Created by: Andrew
Comments: 1
Category: NumericTextBox
Type: Feature Request
4

Please consider supporting entry of values in exponential notation (with 'e' or 'E') so that the behaviour is similar to a native <input type="number> element.

Kendo formatters allow display in scientific notation, but prevents data input in this form.

Unplanned
Last Updated: 03 May 2021 11:41 by ADMIN

Currently, NumericTextBox pops up the standard keyboard on tablet/mobile devices.

So for a user who is entering numbers in multiple fields this can get tedious having to constantly change keyboards.

Since this is a numeric entry control my suggestion is that a numeric keyboard is used.

Related to #1515708

Unplanned
Last Updated: 11 Mar 2020 16:25 by ADMIN
Created by: Jose Manuel
Comments: 0
Category: NumericTextBox
Type: Feature Request
1

When you use a NumericTextBox without attribute title, the widget creates automatically one with the current internal value, showing a annoying and unnecessary tooltip.

We would like remove this behavior or change it with a configuration item.

Something like:

<input id="currency" type="number" title="" />

$("#currency").kendoNumericTextBox({
    autoTooltip: false,
});


Unplanned
Last Updated: 13 Mar 2020 13:11 by ADMIN
Created by: Imported User
Comments: 0
Category: NumericTextBox
Type: Feature Request
2
Add a popup calc like this one : http://keith-wood.name/calculator.html
Unplanned
Last Updated: 31 Mar 2023 12:06 by ADMIN
Created by: Elliot
Comments: 10
Category: NumericTextBox
Type: Feature Request
25
Currently if k-min is set to 100 and a value less than 100 is entered the control will automatically change the value to 100.  

This is very poor behavior.  User input should NEVER be automatically changed to another value. The users rarely notice this and it leads to incorrect data being stored.

What should happen is that it should raise a validation error.  Further it should support using Angular validation for these errors.
Unplanned
Last Updated: 13 Mar 2020 14:02 by ADMIN
Created by: Satish
Comments: 1
Category: NumericTextBox
Type: Feature Request
4
When I enter the following entry in  numeric text box
"1k" should populate "1000"
"1m" should populate "1000000"
"1g" should populate "1000000000"
Unplanned
Last Updated: 13 Mar 2020 13:56 by ADMIN
Created by: John
Comments: 3
Category: NumericTextBox
Type: Feature Request
28
The Kendo UI NumericTextBox hides the decimal portion of its value when focus is in the control and when the decimal part is zero. For example a value of 1,345.00 will appear as 1345 when the focus is put in the control. If the decimal part is non-zero then the value is shown. From a usability viewpoint the disappearing zeros is inconsistent and can be misleading/confusing to a user who may not realize that they can enter a decimal part.

So I think it would be valuable for the control to always show the decimal part of the value.