Search code examples
javascriptreactjsdatepickerantd

Is there a way to disable typing/pasting into the date input and only allowing users to select from the date picker in AntD?


Is there a way to disable typing/pasting into the date input and only allowing users to select from the date picker in AntD? disabling doesn't work either. I've gone through the documentation I tried this way

import { DatePicker } from 'antd';

...

handleDateChange = (e) => {
  e.preventDefault();
}

...

render() {
  ...
  <DatePicker onChange={this.handleDateChange} ... />
  ...
}

This way it just stopped taking input values even through picker panel.


Solution

  • For antd date picker, you need to set dispaly: none in ant-calendar-input-wrap class.

    antd-datepicker

    styles.css. (You just only need to add this css in your .css file)

    .ant-calendar-input-wrap {
      display: none;
    }
    
    

    App.js

     render() {
        return (
          <div className="App">
            <DatePicker  />
          </div>
        );
      }