Missing feature: Display the range for the control + a unit

When min, max and restrict value is used, it would be _very_ handy to be able to display the range to the user, so they dont have to guess it,
i.e.
PlaceholderTextAboveTextBox
TextboxWithUpDown
[RangeFrom - RangeTo] 





1 Reply 1 reply marked as answer

JM Jeyanth Muthu Pratheeban Sankara Subramanian Syncfusion Team August 28, 2020 02:01 PM UTC

Hi Toke,

Greetings from Syncfusion support.

We have checked your requirement. We suggest you to display the range in the placeholder which alerts the user to enter the range as like below.



 
<SfNumericTextBox TValue="int?" Min="@MinValue" Max="@MaxValue"  Placeholder="@Placeholder" FloatLabelType="@FloatLabelType.Always"></SfNumericTextBox> 


@code { 
    public int MinValue = 2; 
    public int MaxValue = 5; 
    public string Placeholder = "Enter range between 2 and 5"; 
} 



Screenshot:


 
 


Regards, 
Jeyanth. 


Marked as answer
Loader.
Up arrow icon