form.jsp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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><t:mutiLang langKey="form.info"></t:mutiLang></title>
  7. <t:base type="jquery,easyui,tools"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" dialog="true" layout="div" action="processController.do?saveForm">
  11. <input name="id" type="hidden" value="${form.id}">
  12. <fieldset class="step">
  13. <div class="form">
  14. <label class="Validform_label">
  15. <t:mutiLang langKey="form.name"></t:mutiLang>
  16. </label>
  17. <input name="formname" value="${form.formname }" datatype="s3-50" class="inputxt">
  18. <span class="Validform_checktip">
  19. <t:mutiLang langKey="formname.rang3-50"></t:mutiLang>
  20. </span>
  21. </div>
  22. <div class="form">
  23. <label class="Validform_label">
  24. <t:mutiLang langKey="submit.url"></t:mutiLang>
  25. </label>
  26. <input name="formaction" value="${form.formaction}" class="inputxt">
  27. </div>
  28. <div class="form">
  29. <label class="Validform_label">
  30. <t:mutiLang langKey="form.type"></t:mutiLang>
  31. </label>
  32. <select name="TSType.id">
  33. <c:forEach items="${typeList}" var="t">
  34. <option value="${t.id }" <c:if test="${t.id==form.TSType.id}">selected="selected"</c:if>>${t.typename}</option>
  35. </c:forEach>
  36. </select>
  37. </div>
  38. <div class="form">
  39. <label class="Validform_label">
  40. <t:mutiLang langKey="form.key"></t:mutiLang>
  41. </label>
  42. <input name="formkey" value="${form.formkey }" class="inputxt">
  43. </div>
  44. <div class="form">
  45. <label class="Validform_label">
  46. <t:mutiLang langKey="form.code"></t:mutiLang>
  47. </label>
  48. <input name="formcode" value="${form.formcode}" class="inputxt">
  49. </div>
  50. <div class="form">
  51. <label class="Validform_label">
  52. <t:mutiLang langKey="form.note"></t:mutiLang>
  53. </label>
  54. <TEXTAREA name="formnote">${form.formnote}</TEXTAREA>
  55. </div>
  56. </fieldset>
  57. </t:formvalid>
  58. </body>
  59. </html>