I am playing around with Rook
and googleVis
in an attempt to
produce some interactive charts
I currently have an HTML text box where users can input a date to trigger changes
res <- Rook::Response$new()
res$write('<input type="text" name="theDate">')
I want to replace this with a combobox
res$write('<input type="dropdown" name="theDate">')
populated by an R vector similar to this
displayDates <- c("12 Mar 1980" ,"19 Mar 1980")
It is like a decade since I have done any of this HTML stuff and I'm
also just beginning with Rook