Unplanned
Last Updated: 29 Aug 2022 07:39 by Jef
Jef
Created on: 29 Aug 2022 07:39
Category: Input
Type: Feature Request
0
Add an option that controls the position of the Floating label of the different Inputs

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

0 comments