使用 wicket 禁用按钮时更改组件的 className?
例如:
<span class="button4">
<button wicket:id="saveButton" type="submit">
<wicket:message key="modalArchiveAccount.button.save" />
</button>
</span>
从java代码中我将此按钮设置为启用或禁用,问题是我不知道如何在禁用按钮时更改跨度类名。
For example:
<span class="button4">
<button wicket:id="saveButton" type="submit">
<wicket:message key="modalArchiveAccount.button.save" />
</button>
</span>
From java code I set this button to be enabled or disabled, the problem is that I don't know how to change the span className when button is disabled.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 WebMarkupContainer 包裹在按钮周围
,然后将新的 AttributeModifier("class",...) 或 AttributeAppender("class",...) 添加到 WebMarkupContainer,该 WebMarkupContainer 使用与禁用按钮相同的逻辑。
Wrap a WebMarkupContainer around your button
then add a new AttributeModifier("class",...) or AttributeAppender("class",...) to the WebMarkupContainer that uses the same logic as you use to disable the button.
这是示例代码:
Here is the example code: