...Hi,
My code has a structure like this -:
ui <-
tabsetPanel
(tab1 (there are inputs like select input/radio button in tab1,tableOutput() etc),
similarly I have 4 more tabs with inputs on the tab)
Thus, we can see that in the server, each tab within the tabset panel will give me input$selectInputval, input$checkboxInputval and tableOutput() etc.
Thus, server will be -:
server <-
(observeEvent(input$inputsfromtab1)
observeEvent(input$inputsfromtab2))
and so on....
But observeEvent fails to work i.e the latest input$ values are not captured by it! Is there a tutorial based on similar scenario?
I checked on internet but there isnt any situation like this..