I use Timevis package in my Shiny app. my data table is "timevisData", and sometimes the user change the data in the table. I want to show the current data table and to see every change immediately. Now I can see updates just if I make refresh, but I want to see it automatically
This is the coomand:
timevis(data =   timevisData,
              
              groups =timevisDataGroups[timevisDataGroups$content %in% myString(),],
              options = list(editable = TRUE)
              )
