why struts UI tags can not be put together in the same row?
I need 2 textareas in the same row and tried as below but it is printing in the next row. All struts tags are have same problem.Is there any alternative method ? Please suggest.
<table>
<tr>
<td>
<s:textarea name="1"/>
</td>
<td>
<s开发者_Go百科:textarea name="2"/>
</td>
</tr>
</table>
This is due to Struts2's default rendering based on its default theme. I find this tutorial gives a good idea of Struts2 theming/templating: http://www.mkyong.com/struts2/working-with-struts-2-theme-template/
If you don't want to use the default and want to lay it out as you have it, try:
<table>
<tr>
<td>
<s:textarea name="1" theme="simple"/>
</td>
<td>
<s:textarea name="2" theme="simple"/>
</td>
</tr>
</table>
精彩评论