1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <%@ page language="java" contentType="text/html;charset=utf-8"%>
- <%@include file="/pages/includes/taglibs.jsp"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
- <html>
- <head>
- <script type="text/javascript" src="<%=request.getContextPath() %>/resource/js/jquery-1.8.3.js"></script>
- <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/jquery.jqGrid.min.js"></script>
- <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/i18n/grid.locale-cn.js"></script>
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
- <link rel="stylesheet" type="text/css" media="screen" href="<%=request.getContextPath() %>/resource/plugin/jqgrid/css/ui.jqgrid.css" />
-
- <title>jqGrid Loading Data - JSON</title>
- </head>
- <body>
- <table id="jqGrid"></table>
- <div id="jqGridPager"></div>
-
- <script type="text/javascript">
-
- $(document).ready(function () {
- $("#jqGrid").jqGrid({
- url: '<%=request.getContextPath() %>/wtInfoAjax.action?wpId=NSS_FDC',
- mtype: "POST",
- datatype: "json",
- colModel: [
- { label: 'id', name: 'id', width: 75,align:'center' },
- { label: 'recorddate', name: 'recorddate', width: 150,align:'center' },
- { label: 'location', name: 'location', width: 150 ,align:'center'}
- ],
-
- loadonce: true,
- width: 780,
- height: 300,
- rowNum: 200,
- viewrecords: true,
- pager: "jqGridPager",
- caption: "风机日信息"
- });
- });
- </script>
-
- </body>
- </html>
|