react-dates: disabling the default calendar popup

405 views Asked by At

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?

1

There are 1 answers

0
juztcode On

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

.DateRangePicker_picker {
    display:none !important;
}

.DateInput_fang{
    display: none !important;
}