You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/WorkFlow/UserTree.aspx

51 lines
2.2 KiB
Plaintext

2 years ago
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserTree.aspx.cs" Inherits="DSWeb.WorkFlow.UserTree" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<style type="text/css">
.select{
border:1px solid #C1BBAB;
}
</style>
<link rel="stylesheet" type="text/css" href="../theme/dhtmlxtree.css" />
<script type="text/javascript" src="../js/dhtmlxcommon.js"></script>
<script type="text/javascript" src="../js/dhtmlxtree.js"></script>
<script type="text/javascript" src="../js/dhtmlxtree_start.js"></script>
<script type="text/javascript" src="../js/dhtmlxtree_json.js"></script>
<script type="text/javascript" src="../js/UserTree.js"></script>
</head>
<body onload="createTree();focusOnTree()" style="background-color:#ecf2ff;">
<table style="width:420px;">
<tr>
<td><div style="width:200px; height:300px; overflow:auto;border:1px solid #C1BBAB;"><div id="treeBox" style="width:200px;height:300px;"></div></div></td>
<td>
<table style="height:300px; width:20px;">
<tr>
<td height="50px"><div><img src="../images/icons/edit_left.gif" onmouseover="mouseMoveImg(this,1)" onmouseout="mouseMoveImg(this,1)" title="移除" onclick="removeUser()"/></div></td>
</tr>
<tr>
<td height="50px"><div><img src="../images/icons/edit_right.gif" onmouseover="mouseMoveImg(this,2)" onmouseout="mouseMoveImg(this,2)" title="添加" onclick="addUser()"/></div></td>
</tr>
<tr>
<td height="200px"></td>
</tr>
</table>
</td>
<td><select runat="server" id="sel_auditor" multiple style="width:200px; height:300px;" class="select"></select></td>
</tr>
</table>
<form id="form1" runat="server">
<div>
<input type="hidden" id="h_step" runat="server" />
<input type="hidden" id="h_workflow" runat="server" />
</div>
</form>
</body>
</html>