Vikas Verma

Results 4 comments of Vikas Verma

I thought to use readOnly to make sure user can't paste something in this. If I use ``readOnly``, ``required`` is not working for me. Any reasons why? Can we not...

Then is there any other option to disable typing/pasting directly into `date-picker`? Currently users can type texts as well in this. Obviously I can do verification by writing my custom...

@RohitoOo I'm just using required to make sure it not blank or null (like below) ``` ``` But as soon as I add readOnly (below), required is not working and...

> I was able to get the desired behavior by adding a handler to `onChangeRaw` and preventing default: > > ``` > handleDateChangeRaw = (e) => { > e.preventDefault(); >...