react-dates:禁用默认日历弹出窗口

问题描述

ReactDateRangePicker,给它自己的日期选择器使用:

enter image description here

我实际上只想要这个字段而不想要认的日历日期范围选择器,我有我自己的日期选择器,我想在焦点改变时使用自定义 css 定位来放置它。如何禁用此认日历弹出窗口?

解决方法

好吧,通过覆盖这些类似乎有一个 css 解决方法:

.DateRangePicker_picker {
    display:none !important;
}

.DateInput_fang{
    display: none !important;
}