1234567891011121314151617181920212223242526272829303132 |
- <%@ page language="java" contentType="text/html;charset=utf-8"%>
- <%@include file="/pages/includes/taglibs.jsp"%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/resource/js/easyui/themes/gray/easyui.css">
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/resource/js/easyui/themes/icon.css">
- <script src="<%=request.getContextPath() %>/resource/js/easyui/jquery.min.js" type="text/javascript"></script>
- <script type="text/javascript" src="<%=request.getContextPath() %>/resource/js/easyui/jquery.easyui.min.js"></script>
-
-
- </head>
- <body>
- <div style="margin:20px 0;"></div>
-
- <table id="dg" title="My Users" class="easyui-datagrid" style="width:700px;height:250px"
- url="<%=request.getContextPath() %>/wtInfoAjax.action?wpId=NSS_FDC" rownumbers="true"
- fitColumns="true" singleSelect="true" pagination="true">
- <thead>
- <tr>
- <th field="id" width="50">id</th>
- <th field="name" width="50">name</th>
- <th field="modelid" width="50">modelid</th>
- </tr>
- </thead>
- </table>
- </body>
- </html>
|