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.

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;
    }
}

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