I need to refresh data displayed in an infobox on a regular interval, but every time it updates it renders a new infobox making for an undesirable user experience.
I've tried using futures/promises for async processing but the renderinfobox still renders a new box on data update. Here's my code :
invalidateLater(30000)
results <-future({testFuture()})
return(value(results))
I would like to be able to update the underlying data of the infobox without dimming the ui element for the entire duration of the query.
')), icon = icon("server"), color = 'blue')` `})
`
– davesauto Sep 12 '19 at 16:20