Afaq Ahmed Khan
Afaq Ahmed Khan

Reputation: 2302

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.

Upvotes: 4

Views: 5035

Answers (2)

Sudhakar
Sudhakar

Reputation: 585

please try with below prop

inputReadOnly={true}

Upvotes: 5

blueseal
blueseal

Reputation: 2908

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>
    );
  }

Upvotes: 1

Related Questions