dbFindSetUI.jsp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%
  4. request.setCharacterEncoding("utf-8");
  5. String path = request.getContextPath();
  6. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  7. %>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  15. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  16. <style type="text/css">
  17. .dlccaller {
  18. background-image: url('../../resource/images/getcaller.png');
  19. }
  20. </style>
  21. <script type="text/javascript">
  22. Ext.Loader.setConfig({
  23. enabled: true
  24. });//开启动态加载
  25. Ext.application({
  26. name: 'erp',//为应用程序起一个名字,相当于命名空间
  27. appFolder: basePath+'app',//app文件夹所在路径
  28. controllers: [//声明所用到的控制层
  29. 'ma.DBfindSetUI'
  30. ],
  31. launch: function() {
  32. Ext.create('erp.view.ma.DBfindSetUI');//创建视图
  33. }
  34. });
  35. var caller = "DBfindSetUI";
  36. var dbfinds = [];
  37. var formCondition = '';
  38. var gridCondition = '';
  39. </script>
  40. </head>
  41. <body >
  42. </body>
  43. </html>