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
Describe the bug Making TagBox readonly, makes the TagBox not be editable anymore.
To Reproduce
TagBox tagBox = TagBox.create("Tags", token -> token);
tagBox.setReadOnly(true);
tagBox.setReadOnly(false);
Possible Cause Could be the hardcoded true at the following place?
domino-ui/domino-ui/src/main/java/org/dominokit/domino/ui/forms/suggest/TagBox.java
Line 262 in 06571b9
The text was updated successfully, but these errors were encountered:
fix #848 TagBox: readonly tag will not be removed
66b1683
vegegoku
No branches or pull requests
Describe the bug
Making TagBox readonly, makes the TagBox not be editable anymore.
To Reproduce
TagBox tagBox = TagBox.create("Tags", token -> token);
tagBox.setReadOnly(true);
tagBox.setReadOnly(false);
Possible Cause
Could be the hardcoded true at the following place?
domino-ui/domino-ui/src/main/java/org/dominokit/domino/ui/forms/suggest/TagBox.java
Line 262 in 06571b9
The text was updated successfully, but these errors were encountered: