1

ReactDateRangePicker, gives it's own date picker to use:
enter image description here

I actually want this field only and do not want the default calendar date range picker, I have my own date picker that I'd like to place using custom css positioning when the focus changes. How do I disable this default calendar popup?

juztcode
  • 1,196
  • 2
  • 21
  • 46

1 Answers1

0

well, there seems to be a css workaround by overriding these classes:

.DateRangePicker_picker {
    display:none !important;
}

.DateInput_fang{
    display: none !important;
}
juztcode
  • 1,196
  • 2
  • 21
  • 46