| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <!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 }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/jquery-1.8.2.js"></script>
- <script type="text/javascript" src="/shares/js/yw/bpm/promptDefine.js"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/core/base.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/plugins/ligerGrid.js" type="text/javascript"></script>
- <link href="${pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript" src="/shares/js/yw/bpm/oa.js"></script>
- <script type="text/javascript" src="/shares/js/yw/bpm/path/pathModel.js"></script>
- <script type="text/javascript">
- var grid = null;
- $(function () {
- grid = $("#maingrid4").ligerGrid({
- columns: [
- { display: '쨌쓺id', name: 'pathId', width: 120 },
- { display: '폅迦뻔쌘', name: 'tmodelId.tmodelName', minWidth: 150,
- render: function (row){
- var html = row.tmodelId.tmodelName;
- return html;
- }},
- { display: '커깃뻔쌘', name: 'nextTmodelId.tmodelName', width: 100,
- render: function (row){
- var html = row.nextTmodelId.tmodelName;
- return html;
- } },
- { display: '쨌쓺잚謹', name: 'pathType.dataName', width: 150,
- render: function (row){
- var html = row.pathType.dataName;
- return html;
- } },
- {
- display: '꾸鱗', isAllowHide: false,
- render: function (row)
- {
- var html = '<a href=\"#\" onclick=\"location=\'${pageContext.request.contextPath }/PathModelAction.do?task=toEdit&modelId=${requestScope.modelId}&pathId='
- + row.pathId + '\';\">긍서</a> ';
- html += '<a href=\"#\" onclick=\"location=\'${pageContext.request.contextPath }/PathModelAction.do?task=info&modelId=${requestScope.modelId}&pathId='
- + row.pathId + '\';\">꿴였</a> ';
- html += '<a href=\"#\" onclick=\"if(confirm(\'횅땍�뇜맡쨌쓺?\')){deletePathModel(\''
- + row.pathId + '\');}\">�뇜</a>';
- return html;
- }
- }
- ],
- usePager:false,
- url: 'PathModelAction.do?task=listForConfig&modelId=${requestScope.modelId}&time=' + new Date().getTime(),
- width: '99.9%',
- height: '99%'
- });
- $("#pageloading").hide();
- });
- function refreshLeft(){
- var isRefresh = "${requestScope.isRefresh}";
- if(isRefresh == "yes"){
- parent.document.getElementById("leftFrame").src="${pageContext.request.contextPath }/FlowModelAction.do?task=tree&modelId=${requestScope.modelId }";
- }
- }
- </script>
- </head>
- <body onload="refreshLeft();">
- <div class="container-layout" style="padding-top:35px;">
- <div id="title" class="form-button" style="width: 100%;">
- <input id="modelId" name="modelId" type="hidden" value="${requestScope.modelId }">
- <input type="button" class="l-button" value="눼쉔쨌쓺" onclick="location='${pageContext.request.contextPath }/PathModelAction.do?task=toCreate&modelId=${requestScope.modelId }';"/>
- </div>
- <div id="searchbar">
- <div id="maingrid4" style="margin:0; padding:0"></div>
-
- <div style="display:none;">
- <!-- g data total ttt -->
- </div>
- </div>
- <%@ include file="/include/message.jsp"%>
- </body>
- </html>
|