我想知道struts2 <s:checkbox>
是否在bootstrap形式下创建。请看一下我的jsp代码。 Checkbox没有出现。如果我按正常方式创建一个复选框,如输入类型=&#34;复选框&#34;但我必须使用struts2标签创建它,以便能够使用struts2动作处理表单。
JSP
<s:form action="exportDocumentExport" namespace="/esignmain/documentExport" name="documentExportForm" theme="bootstrap" cssClass="form-vertical">
<%-- Message --%>
<div class="message">
<s:if test="message != null">
<strong style="color:#7F0E11"><s:property value="message"/></strong>
</s:if>
</div>
<s:if test="message == null">
<div class="scrollView11">
<table id="eSignUsers" class="table table-hover">
<thead>
<tr>
<th><s:text name="S.NO"/></th>
<th><s:text name="Document identifier"/></th>
<th><s:text name="Name"/></th>
<th><s:text name="Description"/></th>
<th><s:text name="Active"/></th>
</tr>
</thead>
<tr>
<s:iterator value="documentList" status="status">
<tbody>
<tr>
<td><s:property value="#status.count" /></td>
<td><s:property value="identifier" /></td>
<td><s:property value="name" /></td>
<td><s:property value="description" /></td>
<td><s:property value="active" /></td>
<td><s:checkbox name="checked" fieldValue="%{id}" value="false"/></td>
</tr>
</tbody>
</s:iterator>
</tr>
<tr>
<table class="table table-striped">
<tr>
<h5>Showing <span id="totalRows" class="label label-success"></span> total records</h5>
<s:submit key="Export Document" value="Export Document" type="button" class="btn btn-sm btn-success" name="Export_Document" theme="simple" onclick="return evalGroup()"><span class="glyphicon glyphicon-export"></span> Export</s:submit>
</tr>
</table>
</tr>
</table>
</div>
由于
答案 0 :(得分:0)
我会推荐Struts2 Bootstrap插件项目。它处理所提供的jsp tempaltes
中的所有引导标记http://struts.jgeppert.com/struts2-bootstrap-showcase/index.action