html - Multiple Shiny apps using the ui to populate the second app -
i have app manages projects. user sees list of projects , can select one. can should (it nice) able click run button , have app open. parameters stored in project selected populated second application. issue having firing second application. runapp generates following.
ui code line:
actionbutton("runproj", "run"),
warning in run(timeoutms) : unhandled error in observer: key / in use observeevent(input$runproj)
i trigger second app , pass in location of project directory have looked @ parsequerystring , still trying figure out way include that. maybe via redirect?
any suggests appreciated.
regards,
rich
i'm not 100% sure if understand intention correctly here few things think may want think about.
- in 1 project, if want run few kinds of analyses, may want try
navbarpage
- if there many different types of analyses, may want try
shinydashboard
- if know link each app , want add "run" buttons, can add button manually in ui.r. think can write codes in server.r generate link based on database.
tags$a(href="the link apps", class= "btn btn-default", "run app")
Comments
Post a Comment