I have a model bound to an edit form. One of the properties of the model is a decimal as percent. I would like to show the user, and allow them to type things like:
10.5instead of.015
Is there an InputNumber formatter? I'd be ok with a third party nuget to manage this as well.This is an over-simplified code sample
<EditForm Model="@Model"><InputNumber @bind-Value="Model.PercentValue" /></EditForm>