Completed
Last Updated: 09 Feb 2024 14:04 by ADMIN
Created by: Daniel
Comments: 7
Category: NumericTextBox
Type: Feature Request
18
Is it possible to add the adornment features from the TextBox to the NumericTextBox? Specifically, the prefix and suffix? 
Declined
Last Updated: 18 Jul 2023 15:41 by ADMIN
Created by: Kyle
Comments: 2
Category: NumericTextBox
Type: Feature Request
1
Currently it seems that only the Kendo textbox has built in functionality for validation icons.
We're using it alongside several other controls (dropdownlists, numerictextbox, etc) and would like to be able to use the same sort of validation icon functionality.
Declined
Last Updated: 18 Jul 2023 15:25 by ADMIN
Created by: shahar
Comments: 1
Category: NumericTextBox
Type: Feature Request
1

Hi Team,

I'd like to request adding a numeric keyboard to the Kendo UI for Angular MaskedTextBox similar to inputMode = "numeric".  

Thank you!

Declined
Last Updated: 04 May 2023 06:35 by ADMIN
Created by: Seyfor
Comments: 4
Category: NumericTextBox
Type: Feature Request
1

It would be nice to have separately event when value is changed with spin up/down button.

Same event exist in jQuery version.

Other option is to add existing event parameter source. (That would be breaking change, so probably not a good idea.)

I need to distinct when user change value with spin buttons or when manually typing numbers.

Completed
Last Updated: 16 Jun 2022 12:26 by ADMIN
Created by: John
Comments: 1
Category: NumericTextBox
Type: Feature Request
0
Please provide a way to enable or disable the default functionality of the (wheel) event for the NumericTextBox.
Completed
Last Updated: 13 Mar 2022 20:05 by serge
The feature created in #881 is very good, but in some cases it doesn't help the use of the page, só it would be nice to have the option to disable this feature.
Completed
Last Updated: 27 Jan 2022 09:19 by ADMIN
Currently, if a user enters into a numeric text box a value that is lower than the HTML5 "min" attribute or greater than the "max" attribute, kendo adjusts the value to either min or max. 

There should be a way to disable that. This messes with, for example, angular validation which also triggers on min and max and prevents us from supporting the functionality where we WANT to let the user enter the erronous value if he wants, but prevent him from submitting the form until they correct it.

This feature also fails to honor angular's allowInvalid flag, as it always adjusts the value, even if allowInvalid is set to true.
Unplanned
Last Updated: 28 Dec 2021 08:24 by ADMIN
Created by: vakifbank
Comments: 0
Category: NumericTextBox
Type: Feature Request
1

Please provide a round option for the NumericTextBox. The same as the one available for the Kendo UI for jQuery NumericTextBox:

https://docs.telerik.com/kendo-ui/api/javascript/ui/numerictextbox/configuration/round

thanks

Declined
Last Updated: 15 Sep 2021 14:11 by ADMIN
Created by: Markus
Comments: 1
Category: NumericTextBox
Type: Feature Request
1

The value of the NumericTextbox is of type number. 

Please allow also null and undefined as valid types for the value field.

I like to force a user input into the without setting a default value.

In this case I want to set the value to null. If I do this, the type checker complains that null is not a valid type for the value field.

 

Example:

@Component({
    selector: 'my-component',
    template: '<kendo-numerictextbox [value]="__value" (valueChange)="onValueChange($event)"></kendo-numerictextbox>',
})
export class MyComponent {
    public __value: number | null = null;   

    public onValueChange(value: number|null): void {
        this.__value = value;
    }
}

Unplanned
Last Updated: 13 Aug 2021 13:13 by ADMIN
Created by: Jaap
Comments: 0
Category: NumericTextBox
Type: Feature Request
4
In the Netherlands and most other European countries the comma is used as decimal separator, but keyboards with English (United States) layout is used.

So when Kendo UI uses the nl-NL culture, you cannot use the decimal point on the numeric keypad and you are forced to use the comma on the main keyboard.

Applications like Excel implement this correctly by translating the decimal point on the numeric keypad to the decimal separator of the current locale.

Would be very helpful if it would be implemented there also.
Completed
Last Updated: 13 Jul 2021 10:01 by ADMIN
Created by: Sergey
Comments: 1
Category: NumericTextBox
Type: Feature Request
5
currently numericTextBox using only dot separator. 
Declined
Last Updated: 09 Feb 2021 11:33 by ADMIN
Created by: n/a
Comments: 1
Category: NumericTextBox
Type: Feature Request
2
Currently when you use a "p" format in the numerictextbox, the value is multiplied by 100. The numerictextbox should support the option to show the percentage symbol without modifying the input value.
Unplanned
Last Updated: 06 Jan 2021 13:28 by Team Booking
Created by: Lynden
Comments: 3
Category: NumericTextBox
Type: Feature Request
5
Please provide that 'factor' property as is available with the jquery widgets. 
Unplanned
Last Updated: 23 Jul 2020 17:59 by Krzysztof
Created by: Tim
Comments: 1
Category: NumericTextBox
Type: Feature Request
5
Please provide support for using the new JavaScript BigInt object in the NumericTextBox component:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt
Declined
Last Updated: 22 Jul 2020 13:59 by ADMIN
I would like the ability to set several step levels for the numeric textbox control with some keyboard combinations with the built in plus and minus keyboard strokes and/or mouse wheel + ctl.   I would like to shift the step by 1 on normal plus and minus, 5 on ctl + plus and 10 on shift + plus.