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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hello,
I have a problem with the stopapp() function when I use it with an actionbutton() + observeEvent().
My goal: quit the application by clicking on a "stop application" button.
observeEvent(input$stop,{ print("7/7......fermeture de l'application") stopApp() })`
observeEvent(input$stop,{
The problem is that it doesn't quit the application when I use it. I thought this was fixed with the following code at the end of my script :
if (!interactive()) { session$onSessionEnded(function() { print("Closing the app") stopApp() q("no") }) }
... but it seems not.
Any ideas?
Thanks,
Alexis
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I have a problem with the stopapp() function when I use it with an actionbutton() + observeEvent().
My goal: quit the application by clicking on a "stop application" button.
observeEvent(input$stop,{
print("7/7......fermeture de l'application")
stopApp()
})`
The problem is that it doesn't quit the application when I use it.
I thought this was fixed with the following code at the end of my script :
if (!interactive()) { session$onSessionEnded(function() { print("Closing the app") stopApp() q("no") }) }
... but it seems not.
Any ideas?
Thanks,
Alexis
The text was updated successfully, but these errors were encountered: