Jak wyłączyć autouzupełnianie tagów Struts (HTML: tekst)

Dla zwykłego tagu wejściowego HTML wyłączenie autouzupełniania jest proste, jak podano poniżej:

<input type="email" name="email" autocomplete="off">

Natomiast nie działa dla tagów Struts podanych poniżej:

<html:text property="" styleId="Field" maxlength="4" size="4" tabindex="14" 
    onblur="check(this);" value="" />

Jak wyłączyć autouzupełnianie tagów Struts?

questionAnswers(5)

yourAnswerToTheQuestion