1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>用户参数查询预览</title>
- <%@include file="/commons/include/form.jsp" %>
- <%-- <link href="${ctx}/styles/ligerUI/ligerui-all.css" rel="stylesheet" type="text/css" /> --%>
- <f:link href="Aqua/css/ligerui-all.css"></f:link>
- <script type="text/javascript" src="${ctx}/js/lg/plugins/ligerLayout.js"></script>
- <script type="text/javascript">
- /*KILLDIALOG*/
- var dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
- $(function() {
- init();
- });
-
- function init(){
- //var obj = window.dialogArguments;
- var obj=dialog.get("obj");
- if(obj==null) return;
- var postFlag=$("#postFlag").val();
- if(postFlag==1) return;
- if(obj.flag==0 ){
- var url=obj.url;
- var param=obj.params;
- $.post(url, { userParam:param,postflag:1 },
- function(data) {
- $('#result').html(data);
- });
- }
- }
- </script>
- </head>
- <body id="result">
- <table id="sysParamItem" cellpadding="1" cellspacing="1" class="table-grid">
- <head>
- <th style="text-align: center;">用户</th>
- </head>
- <tbody >
- <c:forEach items="${userList}" var="u">
- <tr>
- <td style="text-align: center;">${u.fullname } </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- <input type="hidden" id="postFlag" name="postFlag" value="${postFlag}"/>
- <div position="bottom" class="bottom" style='margin-top:10px'>
- <a href='#' class='button' onclick="dialog.close()"><span >返回</span></a>
- </div>
- </body>
- </html>
|