📄 html-multibox.jsp
字号:
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<html:html>
<head>
<title>Test html:multibox Tag</title>
</head>
<body>
<div align="center">
<h1>Test struts-html Property Setters</h1>
</div>
<p>Whatever changes you make to properties should be reflected when the page is redisplayed. When first started, all of the listed checkboxes should be clear (not selected). Press "Save" to update, or "Cancel" to return to the main menu.</p>
<html:form action="/html-multibox-submit">
<table border="0" width="100%">
<tr>
<th align="center" colspan="4">String Array Values</th>
</tr>
<tr>
<th align="right">String 0</th>
<td align="left">
<html:multibox property="stringMultibox">String 0</html:multibox>
</td>
<th align="right">(nested) String 0</th>
<td align="left">
<html:multibox property="nested.stringMultibox" value="String 0" />
</td>
</tr>
<tr>
<th align="right">String 1</th>
<td align="left">
<html:multibox property="stringMultibox">String 1</html:multibox>
</td>
<th align="right">(nested) String 1</th>
<td align="left">
<html:multibox property="nested.stringMultibox" value="String 1" />
</td>
</tr>
<tr>
<th align="right">String 2</th>
<td align="left">
<html:multibox property="stringMultibox">String 2</html:multibox>
</td>
<th align="right">(nested) String 2</th>
<td align="left">
<html:multibox property="nested.stringMultibox" value="String 2" />
</td>
</tr>
<tr>
<th align="right">String 3</th>
<td align="left">
<html:multibox property="stringMultibox">String 3</html:multibox>
</td>
<th align="right">(nested) String 3</th>
<td align="left">
<html:multibox property="nested.stringMultibox" value="String 3" />
</td>
</tr>
<tr>
<th align="right">String 4</th>
<td align="left">
<html:multibox property="stringMultibox">String 4</html:multibox>
</td>
<th align="right">(nested) String 4</th>
<td align="left">
<html:multibox property="nested.stringMultibox" value="String 4" />
</td>
</tr>
<tr>
<th align="center" colspan="4">Integer Array Values</th>
</tr>
<tr>
<th align="right">0</th>
<td align="left">
<html:multibox property="intMultibox" value="0" />
</td>
<th align="right">(nested) 0</th>
<td align="left">
<html:multibox property="nested.intMultibox">0</html:multibox>
</td>
</tr>
<tr>
<th align="right">10</th>
<td align="left">
<html:multibox property="intMultibox" value="10" />
</td>
<th align="right">(nested) 10</th>
<td align="left">
<html:multibox property="nested.intMultibox">10</html:multibox>
</td>
</tr>
<tr>
<th align="right">20</th>
<td align="left">
<html:multibox property="intMultibox" value="20" />
</td>
<th align="right">(nested) 20</th>
<td align="left">
<html:multibox property="nested.intMultibox">20</html:multibox>
</td>
</tr>
<tr>
<th align="right">30</th>
<td align="left">
<html:multibox property="intMultibox" value="30" />
</td>
<th align="right">(nested) 30</th>
<td align="left">
<html:multibox property="nested.intMultibox">30</html:multibox>
</td>
</tr>
<tr>
<th align="right">40</th>
<td align="left">
<html:multibox property="intMultibox" value="40" />
</td>
<th align="right">(nested) 40</th>
<td align="left">
<html:multibox property="nested.intMultibox">40</html:multibox>
</td>
</tr>
<tr>
<td> </td>
<td align="right">
<html:submit>Save</html:submit>
</td>
<td align="left">
<html:reset>Reset</html:reset>
<html:cancel>Cancel</html:cancel>
</td>
<td> </td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -