-
Notifications
You must be signed in to change notification settings - Fork 79
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
UI not showing after login #36
Comments
Hello, Your example is working for me, can you share more info, like result of Victor |
In complement, using So, in some case with not enough control, you can have a application without any problems without using You can normally see this kind of case / error in your R console. The cause is most of the time some controls in observe / reactive on input that are not existing on begining.... (like Better solution : see all errors on R console and add control (like Faster solution : add a global observer on top of your all your server
|
Hi there, I seem to be having a similar problem where certain UI elements do not render (using If I remove the authentication, then these UI elements render perfectly. But, with the authentication, they just do not appear. I can "trigger" these elements to appear by clicking around for awhile. Any ideas? |
Hello, There is a lag between your UI and the server, since {shinymanger} hides the UI until authentication is successful. It is therefore possible that some of them are not defined and are If you can isolate the problem and provide a reproducible example it will be great. Victor |
That's what keeps me wondering.I have two laptops.It works perfectly fine in one bot not in the other which initially was also working fine. |
@Oliversinn can you provide a minimal reproducible example where it's not working ? We'll look into |
There isn't any erro or warning in the R console so its realy hard to provide an example of what really is causing the problem. But in my UI i have withSpinner() wrapper in all my plots. Like withSpinner(leafletOutput("myOutput")) or withSpinner(plotlyOutput("myOutput")). If i have this loader my app wont work at first, i must change inputs to refresh it an fix it (like magically). When I remove all the witSpinner() wrappers it would work fine. The only console message I get it's the one i posted :( I know its hard to debug with only this information but its all i got. |
I solved it just using a different type of package to use loaders tho... |
Hello, i have installed the package well and created my app. Unfortunately after logging in successfully,I am not able to view my UI elements.
Honestly, this has brought down my whole project down . Can someone help me.
server.r
The text was updated successfully, but these errors were encountered: