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
I am not sure if this repo is still alive but the README mentions that
README
ns <- server$ns
can be used to obtain the namespace of the current module. Surely you meant to write
ns <- session$ns
Also, you are misusing conditionalPanel. If used inside a module, you should use the ns argument as in
conditionalPanel
ns
ns <- NS(id) conditionalPanel( "input.myInput != 0", tagList(...), ns = ns )
to make sure the module knows which namespace to use when looking up input.myInput.
input.myInput
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am not sure if this repo is still alive but the
README
mentions thatcan be used to obtain the namespace of the current module. Surely you meant to write
Also, you are misusing
conditionalPanel
. If used inside a module, you should use thens
argument as into make sure the module knows which namespace to use when looking up
input.myInput
.The text was updated successfully, but these errors were encountered: