We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have an IgbInput with DisplayType set to Numer. I am trying to two-way bound it to a numeric variable.
IgbInput
DisplayType
Numer
Use code like this:
<IgbInput DisplayType="InputType.Number" @bind-Value="@_number" Label="Numeric" input_group-scope></IgbInput> @code { private double _number; }
Error is shown - Cannot convert from double to string.
Cannot convert from double to string
Should be able to bind numeric input to numeric value. Note, this does not work with int too.
int
The text was updated successfully, but these errors were encountered:
It's fixed internally, but we'll close it once the official release version is out.
Sorry, something went wrong.
It's reverted as the fix ends up being major breaking change, we'd probably try adding numeric editor in order to handle this.
MayaKirova
No branches or pull requests
Description
I have an
IgbInput
withDisplayType
set toNumer
. I am trying to two-way bound it to a numeric variable.Steps to reproduce
Use code like this:
Result
Error is shown -
Cannot convert from double to string
.Expected result
Should be able to bind numeric input to numeric value. Note, this does not work with
int
too.The text was updated successfully, but these errors were encountered: