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 A selection listener added to the Tree root will not be triggered from TreeItem directly appended to the Tree.
To Reproduce
Tree.<String>create("Menu") .setSearchable(true) .addSelectionListener((source, selection) -> { DomGlobal.console.info("Item selected"); }) .appendChild(TreeItem.create("Item 1")) .appendChild(TreeItem.create("Item 2"))
The selection listener wont be triggered.
Expected behavior The selection listener should be executed and print the log message.
The text was updated successfully, but these errors were encountered:
fix #832 Tree global selection listener not triggered when selecting …
356e409
…TreeItems appended to the Tree root
vegegoku
No branches or pull requests
Describe the bug
A selection listener added to the Tree root will not be triggered from TreeItem directly appended to the Tree.
To Reproduce
The selection listener wont be triggered.
Expected behavior
The selection listener should be executed and print the log message.
The text was updated successfully, but these errors were encountered: