Skip to content
New issue

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

README.md mentions server but it should be session #1

Open
GregorDeCillia opened this issue Aug 16, 2018 · 0 comments
Open

README.md mentions server but it should be session #1

GregorDeCillia opened this issue Aug 16, 2018 · 0 comments

Comments

@GregorDeCillia
Copy link

I am not sure if this repo is still alive but the README mentions that

 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

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant