| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>流程列表</title>
- <link href="${pageContext.request.contextPath}/main.css"
- rel="stylesheet" type="text/css" />
- <link
- href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css"
- rel="stylesheet" type="text/css" />
- <script
- src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js"
- type="text/javascript"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript">
- var grid = null;
- $(function() {
- grid = $("#maingrid4").ligerGrid(
- { columns : [ { display : '流程标题', name : 'insId.insName', width : 250,
- render : function (row){
- var html = row.insId.insName;
- return html;
- }},
- { display : '当前环节', name : 'tmodelId.tmodelName', width : 100,
- render : function (row){
- var html = row.tmodelId.tmodelName;
- return html;
- } },
- { display : '流程模版', name : 'modelId.modelName', width : 120,
- render : function (row){
- var html = row.modelId.modelName;
- return html;
- } },
- { display : '流程发起者', name : 'insId.creator.username', width : 100,
- render : function (row){
- var html = row.insId.creator.username;
- return html;
- } },
- { display : '流程发起时间', name : 'insId.createdate', width : 200,
- render : function (row){
- var html = row.insId.createdate;
- return html;
- } },
- { display : '操作', isAllowHide : false,
- render : function(row) {
- var html="";//操作的A标签
- return html;
- }
- } ],
- usePager : true,
- pageSize : 20,
- url : 'SampleAction.do?taks=xx&time=' + new Date().getTime(),
- pageParmName : 'p', //页索引参数名,(提交给服务器)
- pagesizeParmName : 'pSize', //页记录数参数名,(提交给服务器)
- width : '99.9%',
- height : '99%',//getParentHeight()-67,
- onError: function(){alert("数据加载失败,请刷新页面!");}
- });
- $("#pageloading").hide();
- });
- </script>
- </head>
- <body>
- <div class="container-layout">
- <div id="title" class="form-button" style="width: 100%;">
- <input onclick="" type="button" value="关闭" class="l-button">
- </div>
- <div id="maingrid4" style="margin: 0; padding: 0;clear: both;"></div>
- <div style="display: none;">
- </div>
- </div>
- <%@ include file="/include/message.jsp"%>
- </body>
- </html>
|