使用graphicImage 进行partialSubmit 不起作用?
我有一个简单的页面,实现了具有强度分析的密码输入字段。我正在使用Ice-faces 1.8.2。
我设置密码输入字段的 partialSubmit 属性来显示密码强度:
<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}"/>
当我离开密码输入字段时,pwdstrength
组件正确更新其值,但 imgstrength
字段不会更改图像。仅当我随后离开字段 password2
或单击表单中的任意位置时,图像才会更改。
我在 Firefox3.6 和 Chrome 上测试了该表单:行为相同。
有什么建议吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能被浏览器缓存。添加带有时间戳的查询字符串,以便浏览器被迫从服务器请求新的查询字符串。
其中
#{now}
是类java.util.Date
。It's likely cached by the browser. Add a query string with a timestamp so that the browser is forced to request it fresh new from the server.
Where
#{now}
is a request scoped managed bean of classjava.util.Date
.