Currently, the different Kendo UI for Vue Native Inputs have the label property that adds a Floating label to the selected component. By defining a Floating label, the only way we can position it above the selected Input is to enter a value in the input.
The current request is about an option that allows the developer to set the position of the Floating label above the Input, no matter if there is or isn't a value in the component.
Currently, this functionality can be achieved using the following CSS. However, it will be easier if we can control the label position with a single prop
.k-floating-label-container.k-empty > .k-label {
top: 0;
left: 0;
}
Get a NumericTextbox with currency formatting. If one clicks on the input of the component in the area in front of the currency sign, the caret is positioned before this currency sign. Once the caret is positioned in front of the currency sign, the first entered number won't be applied to the component if you start entering numbers from the keyboard.
When the user enters a number through the keyboard, all its digits should be applied to/accepted by the component, no matter the position of the caret.