DT
DT copied to clipboard
Show Calendar in Filter Date Column
I have requirement to display Calendar in Date Filed Column Filter. Is there any way to do it. We used RStudio 3.3 & DT Library
Please check the below image for further reference.

I'm totally in favour of that!
+1
I'd love to have that, too, but... it does not seem to be trivial to implement in my eyes 😞
These days you can do this with the SearchBuilder and DateTime extensions.
DT::datatable(
data.frame(available_from = Sys.Date() + 1:10),
options = list(dom = 'Qlfrtip'),
extensions = c('SearchBuilder', 'DateTime')
)