0

Is it possible to prevent the autocompletion box from showing?

enter image description here

As you can see I am showing a datetime picker, but there is a autocompletion box in the way. Can I prevent it from showing?

Black
  • 18,150
  • 39
  • 158
  • 271

2 Answers2

5

have you tried autocomplete="off"

farisabun
  • 123
  • 1
  • 8
1

You probably have the autocomplete attribute on your calendar input which may appear something like this:

<input autocomplete="username">

Try switch to false?

<input autocomplete="false">
wentjun
  • 40,384
  • 10
  • 95
  • 107