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
When giving id keyword to pset! the function doesn't use it to look for the node.
(fx/pset! element :#file-selection {:root (generate-file-menu)})
will manipulate element, instead of subelement with given id.
When keyword arg is given the function should work like the following:
(fx/pset! (fx/lookup view :#file-selection) {:root (generate-file-menu)})
Not a big deal, since workaround posted above works.
The text was updated successfully, but these errors were encountered:
I'm glad this workaround was posted. For me, "at!" doesn't do anything either.
Sorry, something went wrong.
No branches or pull requests
When giving id keyword to pset! the function doesn't use it to look for the node.
will manipulate element, instead of subelement with given id.
When keyword arg is given the function should work like the following:
Not a big deal, since workaround posted above works.
The text was updated successfully, but these errors were encountered: