We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The DataBind component does not have yet a special handling of values, except for checkboxes and selects.
DataBind
It could be useful to be able to define the type of the value that should be returned when invoking the get() method or reading the value property.
get()
value
If we are dealing with inputs of type number for example, it can not be used as follows:
dataBindInstance.value += 1;
The text was updated successfully, but these errors were encountered:
We have 2 options :
type
valueAsNumber
valueAsBoolean
Sorry, something went wrong.
No branches or pull requests
The
DataBind
component does not have yet a special handling of values, except for checkboxes and selects.It could be useful to be able to define the type of the value that should be returned when invoking the
get()
method or reading thevalue
property.If we are dealing with inputs of type number for example, it can not be used as follows:
The text was updated successfully, but these errors were encountered: