tBusUserEducation-update.jsp 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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="tBusUserEducationController.do?doUpdate" >
  14. <input id="id" name="id" type="hidden" value="${tBusUserEducationPage.id }"/>
  15. <input id="userId" name="userId" type="hidden" type="text" style="width: 150px" class="inputxt" datatype="*" ignore="checked" value='${tBusUserEducationPage.userId}'/>
  16. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
  17. <tr>
  18. <td align="right">
  19. <label class="Validform_label">
  20. 学历类型:
  21. </label>
  22. </td>
  23. <td class="value">
  24. <t:dictSelect field="eduType" type="list" typeGroupCode="education" defaultVal="${tBusUserEducationPage.eduType}" hasLabel="false" title="学历类型" ></t:dictSelect>
  25. <span class="Validform_checktip"></span>
  26. <label class="Validform_label" style="display: none;">学历类型</label>
  27. </td>
  28. </tr>
  29. <tr>
  30. <td align="right">
  31. <label class="Validform_label">
  32. 学校名:
  33. </label>
  34. </td>
  35. <td class="value">
  36. <input id="school" name="school" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBusUserEducationPage.school}'/>
  37. <span class="Validform_checktip"></span>
  38. <label class="Validform_label" style="display: none;">学校名</label>
  39. </td>
  40. </tr>
  41. <tr>
  42. <td align="right">
  43. <label class="Validform_label">
  44. 起始日期:
  45. </label>
  46. </td>
  47. <td class="value">
  48. <input id="eduStarttime" name="eduStarttime" type="text" style="width: 150px" class="Wdate" onClick="WdatePicker()" ignore="ignore" value='<fmt:formatDate value='${tBusUserEducationPage.eduStarttime}' type="date" pattern="yyyy-MM-dd"/>'/>
  49. <span class="Validform_checktip"></span>
  50. <label class="Validform_label" style="display: none;">起始日期</label>
  51. </td>
  52. </tr>
  53. <tr>
  54. <td align="right">
  55. <label class="Validform_label">
  56. 结束日期:
  57. </label>
  58. </td>
  59. <td class="value">
  60. <input id="eduEndtime" name="eduEndtime" type="text" style="width: 150px" class="Wdate" onClick="WdatePicker()" ignore="ignore" value='<fmt:formatDate value='${tBusUserEducationPage.eduEndtime}' type="date" pattern="yyyy-MM-dd"/>'/>
  61. <span class="Validform_checktip"></span>
  62. <label class="Validform_label" style="display: none;">结束日期</label>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td align="right">
  67. <label class="Validform_label">
  68. 描述:
  69. </label>
  70. </td>
  71. <td class="value">
  72. <input id="description" name="description" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBusUserEducationPage.description}'/>
  73. <span class="Validform_checktip"></span>
  74. <label class="Validform_label" style="display: none;">描述</label>
  75. </td>
  76. </tr>
  77. </table>
  78. </t:formvalid>
  79. </body>
  80. <script src = "webpage/cn/com/lzt/education/tBusUserEducation.js"></script>