DT icon indicating copy to clipboard operation
DT copied to clipboard

Show Calendar in Filter Date Column

Open Vijaykumarj opened this issue 8 years ago • 4 comments

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. date time help

Vijaykumarj avatar Jun 07 '17 05:06 Vijaykumarj

I'm totally in favour of that!

patrickbucher avatar Aug 23 '17 13:08 patrickbucher

+1

zeyunlu avatar Oct 19 '17 21:10 zeyunlu

I'd love to have that, too, but... it does not seem to be trivial to implement in my eyes 😞

yihui avatar Jan 16 '18 06:01 yihui

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')
)

image

mikmart avatar Jan 25 '24 22:01 mikmart