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
To reproduce the error, create a DateBox using this code:
myDateBox = DateBox.create("myDateBox")) .setReadOnly(true) .setPattern("dd.MM.yyyy") .setParseStrict(true) .withPopover((parent, popover) -> popover.addCss(dui_accent_blue));
and then call:
myDateBox.clear();
or
myDateBox.setValue(null);
this will create the following issue:
This happens in version 2.0.0-rc1. In version 1.0.0 it works as expected.
The text was updated successfully, but these errors were encountered:
fix #803 Calling clear or setValue(null) on DateBox throws a NPE
d21c24a
vegegoku
No branches or pull requests
To reproduce the error, create a DateBox using this code:
and then call:
or
this will create the following issue:
This happens in version 2.0.0-rc1. In version 1.0.0 it works as expected.
The text was updated successfully, but these errors were encountered: