Hi,
I have problem fighting with autocomplete in Chrome. Obviously using autocomplete="off" is ignored and people try to find workarounds. Using autocomplete="none" as in SmartClient stopped working for me and I have found out that - when autocomplete attribute is set to some other string that Chrome does not recognize as valid value according to HTML- it still can show autocomplete popup based on "name" attribute for HTML input.
I have found out that removing "name" attribute from TextItems' <input> elements doesn't help as the entered value is also saved and used for other inputs with empty name.
At the moment the only way I have found is to make name atribute unique with some large random number (Date.now()) so it's unlikely it is reused in the other form even on the next page view.
Please consider creating unique "name"s for inputs to disable autocomplete in Chrome.
Best regards,
Janusz
I have problem fighting with autocomplete in Chrome. Obviously using autocomplete="off" is ignored and people try to find workarounds. Using autocomplete="none" as in SmartClient stopped working for me and I have found out that - when autocomplete attribute is set to some other string that Chrome does not recognize as valid value according to HTML- it still can show autocomplete popup based on "name" attribute for HTML input.
I have found out that removing "name" attribute from TextItems' <input> elements doesn't help as the entered value is also saved and used for other inputs with empty name.
At the moment the only way I have found is to make name atribute unique with some large random number (Date.now()) so it's unlikely it is reused in the other form even on the next page view.
Please consider creating unique "name"s for inputs to disable autocomplete in Chrome.
Best regards,
Janusz
Comment