sysOrgTacticSelector.jsp 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html" %>
  3. <html>
  4. <head>
  5. <title>选择模版</title>
  6. <%@include file="/commons/include/get.jsp" %>
  7. <script type="text/javascript">
  8. </script>
  9. <style type="text/css">
  10. div.bottom{text-align: center;padding-top: 10px;}
  11. body {overflow: hidden;}
  12. </style>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-search" moreHeight="30">
  17. <form action="selector.ht?" id="searchForm" method="POST" target="orgFrame">
  18. <div class="row">
  19. <input type="hidden" name="isSingle" value="${isSingle }">
  20. <span class="label">组织名:</span>
  21. <input type="text" id="orgName" name="orgName" class="inputText" value="${param['orgName']}"/> &nbsp;
  22. <a href="javascript:;" onclick="$('#searchForm').submit()" class='button'><span>查询</span></a>
  23. </div>
  24. </form>
  25. </div>
  26. <c:if test="${isSingle==false}">
  27. <c:set var="checkAll">
  28. <input type="checkbox" id="chkall" name="chkall" />
  29. </c:set>
  30. </c:if>
  31. <display:table name="sysOrgList" id="sysOrgItem" requestURI="selector.ht" sort="external" cellpadding="1" cellspacing="1" export="false" class="table-grid">
  32. <display:column title="${checkAll}" media="html" style="width:30px;">
  33. <c:choose>
  34. <c:when test="${isSingle==false}">
  35. <input type="checkbox" class="pk" name="orgId" value="${sysOrgItem.orgId}#${sysOrgItem.orgName}">
  36. </c:when>
  37. <c:otherwise>
  38. <input type="radio" class="pk" name="orgId" value="${sysOrgItem.orgId}#${sysOrgItem.orgName}">
  39. </c:otherwise>
  40. </c:choose>
  41. <input type="hidden" name="orgName" value="${sysOrgItem.orgName}">
  42. </display:column>
  43. <display:column property="orgName" title="名称" sortable="true" sortName="orgName" ></display:column>
  44. <display:column property="orgPathname" title="所在路径" sortable="true" sortName="orgPathname" maxLength="250" ></display:column>
  45. </display:table>
  46. </div>
  47. </body>
  48. </html>