Struts 表单无法正确显示
当我显示和使用主题 css_xhtml 时,我的文本字段显示不正确。文本字段标签显示在文本字段本身的顶部。我正在使用 css_xhtml,以便我可以使用我的样式“mediumfont”。我需要扩展 css_html 主题吗?阅读有关此主题的文档,它说 - “标准两列基于 CSS 的布局”,这是否导致了我的问题。
这是我的表单 -
<s:form action="add" theme="css_html">
<s:textfield cssStyle="mediumfont" name="Bean.Name" label="Name" />
<sj:submit targets="update" value="Add" />
</s:form>
如果我不应该将其添加到 jsp 论坛,请道歉。
谢谢
When I display and use the theme css_xhtml my textfield appears incorrectly. The textfield label is displayed on top of the textfield itself. I'm using the css_xhtml so that I can use my style "mediumfont". Do I need to extend the css_html theme ? Reading the docs about this theme it says - "Standard two-column CSS-based layout", is this causing my problem.
Here is my form -
<s:form action="add" theme="css_html">
<s:textfield cssStyle="mediumfont" name="Bean.Name" label="Name" />
<sj:submit targets="update" value="Add" />
</s:form>
Appologies if I shouldnt have added this to the jsp forums.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到标签问题答案的最快方法是查看 http:// struts.apache.org/2.x/docs/tag-reference.html
这是权威的参考。
如果您单击文本字段的链接,然后查找名为 labelposition 的属性,您将找到答案。
The fastest way to find answers to tag questions is to look at http://struts.apache.org/2.x/docs/tag-reference.html
That is the definitive reference.
If you click on the link for textfield and then look for the attribute named labelposition you'll find your answer.