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? 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
Reputation: 2908
For antd date picker, you need to set dispaly: none
in ant-calendar-input-wrap
class.
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