files.jsp 1002 B

123456789101112131415161718192021222324
  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"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" layout="div" dialog="true" beforeSubmit="upload">
  11. <fieldset class="step">
  12. <div class="form">
  13. <label class="Validform_label"> 文件标题: </label>
  14. <input name="documentTitle" id="documentTitle" datatype="s3-50" value="${doc.documentTitle}" type="text">
  15. <span class="Validform_checktip">标题名称在3~50位字符,且不为空</span>
  16. </div>
  17. <div class="form">
  18. <t:upload name="fiels" buttonText="上传文件" uploader="jeecgFormDemoController.do?saveFiles&fileKey=${doc.id}" extend="" id="file_upload" formData="documentTitle"></t:upload>
  19. </div>
  20. <div class="form" id="filediv" style="height: 50px"></div>
  21. </fieldset>
  22. </t:formvalid>
  23. </body>
  24. </html>