-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
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
Is null
as a value possible?
#53
Comments
I think this is related to #57 |
Yes, there something like an empty-state is missing ... And with it to get back to that empty-state as well. |
Same issue here. Any update ? |
This will be absolutely necessary for me as well, +1. |
Same here. May be merge in this fork: https://github.com/nettix-oy/vue-numeric/tree/nettix-null-empty-value ? |
@zezic This fork that you mentioned has what I need but just for integers. For decimals it isn't working yet. 😢 It's also necessary for me. |
I'm on the same boat, I need a numeric input with the particularity that 0 should be displayed as emtpy.. I would be able to do that if I can set the input's value to null, but there is no way do it as far as I can see. |
still waiting for it also. |
Same here. Any updates? |
any update? |
Since there doesn't seem to be any feedback, maybe it is time to create a fork and fix it? In my case, I'm not working on that project anymore, so there is no need for me there. |
Since there does not seem to be any progress on it, I am gonna close this issue. Feel free to re-open it if someone is gonna pick this up and need more input. |
definitely needed null = empty |
Hey,
is it possible to add
null
as a value?For a more detailed explanation, this is my scenario:
I have a form which is populated by API data and the user should add/change data and then submit it. There we have a
<vue-numeric>
input as well. When the user edits the field, everything works as expected.But I have the situation that sometimes the input isn't populated at all and the user doesn't change anything either. In this case the empty value
0
is sent back to the API but it should benull
...I just saw that there is something like
:empty-value
now ... But it still expects the the value is a Number, doesn't it?The text was updated successfully, but these errors were encountered: