Struts2:自定义 s:textfield 标签
我想自定义struts2标签。
在我的网络应用程序中,某些字段是强制性的。因此,我想自定义 struts2 文本字段,使其显示文本框和“*”符号(强制符号)的组合。
因此,我不需要在每个必填文本字段后硬编码“*”。
一件事是我没有使用 strtus2 内置主题。所以我不想启用主题来实现这个功能。
那么..我怎样才能实现这样一个自定义的文本字段呢?
谢谢, 贡詹·沙阿。
I want to customize struts2 tag.
In my web app some of the fields are mandatory.So I want to customize struts2 text filed in such a way that It will display text box and a "*" symbol(mandatory sign) combined.
So I dont need to hard code "*" after each mandatory text field.
One thing is that I have not used strtus2 built in theme. So I dont want to enable the theme to implement this functionality.
Then .. How can I implement such a customized text field ?
Thanx,
Gunjan Shah.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够在 s: 标签中使用 mandatoru="true"。默认情况下,这将在该字段之前放置 * 号。
希望这有帮助。
You should be able to use mandatoru="true" in s: tags. This will by default place the * sign before that field.
Hope this helps.
有一个名为“required”的属性。您可以将其设置为 true。它将在标签后设置*(红色)符号。
它的内置设施由struts 提供。
There is an attribute named "required". You can set it to true. It will set * (red colored) symbol after the label.
Its built in facility provieded by struts.