1691
Views
6
Comments
Solved
Stop Form from remembering previous inputs 
Question

Hi,

Currently creating a form that requires start and end date inputs from the user. The calendar widget is working fine however the input "remembers" the previous inputs and displays them in a drop down over the calendar widget...


Is there a way that I can get the form/input widget to either not "remember" previous inputs or to at least hide them from the user.

Thanks 

Peter 

2017-03-03 12-48-17
Balasubramanian Prakasam
Solution

Hi Peter,

Yes, you can stop autofill feature, normally browser have this feature, and if we don’t want we can stop for certain fields, following attribute will do the trick

autocomplete =“off”

add this in the extended property of textbox.

 Thanks 

Balu

2018-12-04 15-40-41
Peter Travers

Balu wrote:

Hi Peter,

Yes, you can stop autofill feature, normally browser have this feature, and if we don’t want we can stop for certain fields, following attribute will do the trick

autocomplete =“off”

add this in the extended property of textbox.

 Thanks 

Balu

Thanks, that has fixed it!!


2017-11-20 17-25-09
CASSIAN KAN

Balu wrote:

Hi Peter,

Yes, you can stop autofill feature, normally browser have this feature, and if we don’t want we can stop for certain fields, following attribute will do the trick

autocomplete =“off”

add this in the extended property of textbox.

 Thanks 

Balu

Hi Balu

I added the autocomplete = "off" in the extended property. However it still not work. Is there anything I missed ?

Thanks

Cassian



2024-03-25 06-19-08
Harlin Setiadarma

Outsystems really should mark date input field with autocomplete=off right out of the box...

2019-11-06 17-40-51
Odairson Cardoso

Hi All,

When autocomplete="off" not work, please use autocomplete="new-password"

Regards.

2019-04-06 18-57-34
Hasse Brunn

Hard to know when to use "off" or "new-password"..

:)

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.