autoFormStyle-update.jsp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>表单样式表</title>
  7. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  8. <script type="text/javascript">
  9. //编写自定义JS代码
  10. </script>
  11. </head>
  12. <body>
  13. <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="autoFormStyleController.do?doUpdate" tiptype="1">
  14. <input id="id" name="id" type="hidden" value="${autoFormStylePage.id }">
  15. <input id="createName" name="createName" type="hidden" value="${autoFormStylePage.createName }">
  16. <input id="createBy" name="createBy" type="hidden" value="${autoFormStylePage.createBy }">
  17. <input id="createDate" name="createDate" type="hidden" value="${autoFormStylePage.createDate }">
  18. <input id="updateName" name="updateName" type="hidden" value="${autoFormStylePage.updateName }">
  19. <input id="updateBy" name="updateBy" type="hidden" value="${autoFormStylePage.updateBy }">
  20. <input id="updateDate" name="updateDate" type="hidden" value="${autoFormStylePage.updateDate }">
  21. <input id="sysOrgCode" name="sysOrgCode" type="hidden" value="${autoFormStylePage.sysOrgCode }">
  22. <input id="sysCompanyCode" name="sysCompanyCode" type="hidden" value="${autoFormStylePage.sysCompanyCode }">
  23. <table style="width: 100%;" cellpadding="0" cellspacing="1" class="formtable">
  24. <tr>
  25. <td align="right" style="width:15%;">
  26. <label class="Validform_label">
  27. 表单名称:
  28. </label>
  29. </td>
  30. <td class="value" style="width:85%;">
  31. <input id="styleDesc" name="styleDesc" type="text" style="width: 25%;" class="inputxt" datatype="*" ajaxurl="autoFormStyleController.do?checkStyleNm&id=${autoFormStylePage.id}"
  32. value='${autoFormStylePage.styleDesc}'>
  33. <span class="Validform_checktip"></span>
  34. <label class="Validform_label" style="display: none;">表单名称</label>
  35. </td>
  36. </tr>
  37. <tr >
  38. <td align="right">
  39. <label class="Validform_label">
  40. 表单内容:
  41. </label>
  42. </td>
  43. <td class="value">
  44. <textarea id="styleContent" name="styleContent" rows="30" cols="245" datatype="*">${autoFormStylePage.styleContent}</textarea>
  45. </td>
  46. </tr>
  47. </table>
  48. </t:formvalid>
  49. </body>
  50. </html>