Could you please help with an example how I could trigger an eventReactive expression to kick in by an "actionbutton" OR by picking another item (than default) from selectInput such as:
DAT<-eventReactive(input$action_button | input$sel_input_menu,{
rest of the code comes here that gets executed whenever I either hit the "actionbutton" or change the state of the selectInput...
})