I have a simple page, implementing a password input field with strength analysis. I'm usign Ice-faces 1.8.2.
I set the partialSubmit property of password input field to display password strength:
<ice:inputSecret redisplay="true" partialSubmit="true"
id="password" value="#{beanreg.password}"/>
<ice:panelGroup>
<ice:graphicImage id="imgstrength" url="/images/#{beanreg.strengthImage}"/>
<ice:outputText id="pwdstrength"
value="#{beanreg.passwordStrength}"/>
</ice:panelGroup>
<ice:inputSecret partialSubmit="true"
id="password2" value="#{beanreg.password2}"/>
When I leave the password input field, the pwdstrength component correctly update his value, but the imgstrength field doesn't change the image. The image get changed only when subsequently I leave the field password2 or when I click anywhere in the form.
I tested the form both on Firefox3.6 and Chrome: same behaviour.
Any suggestion?