You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there are some more Tabpanels in the ShinyApp, the help button makes the same presentation for all of them. Are there any parameters to pair the related Tabpanels with the correct elements in the help.csv?
The text was updated successfully, but these errors were encountered:
To solve this I used an observeEvent in server.R and create for each TabPanel a .csv file.
server.R
# listen to the action button
observeEvent(input$startHelp,{
# Index help data into right tab
indTab <- names(helpData)==input$sidebarmenu
initIntroJS(session, helpData[[names(helpData)[indTab]]])
})
Global.R
helpDir : Help directory where are all the .csv files
When there are some more Tabpanels in the ShinyApp, the help button makes the same presentation for all of them. Are there any parameters to pair the related Tabpanels with the correct elements in the help.csv?
The text was updated successfully, but these errors were encountered: