2023-08-24 15:33:21 +08:00
|
|
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShowProjectWBS.aspx.cs" Inherits="FineUIPro.Web.DigData.ShowProjectWBS" %>
|
|
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
|
<head runat="server">
|
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
|
|
<title>项目WBS</title>
|
|
|
|
|
|
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<form id="form1" runat="server">
|
|
|
|
|
|
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
|
|
|
|
|
|
<f:Panel ID="Panel1" runat="server" ShowBorder="false" ShowHeader="false" Layout="Region">
|
|
|
|
|
|
<Toolbars>
|
|
|
|
|
|
<f:Toolbar ID="Toolbar1" Position="Top" runat="server">
|
|
|
|
|
|
<Items>
|
2023-08-31 16:37:09 +08:00
|
|
|
|
<f:RadioButtonList runat="server" ID="ckLevel" Width="350px" AutoColumnWidth="true"
|
|
|
|
|
|
AutoPostBack="true" OnSelectedIndexChanged="ckLevel_SelectedIndexChanged">
|
2023-08-24 15:33:21 +08:00
|
|
|
|
<f:RadioItem Text="全部" Value="-1" Selected="true" />
|
|
|
|
|
|
<f:RadioItem Text="0级" Value="0" />
|
|
|
|
|
|
<f:RadioItem Text="1级" Value="1" />
|
|
|
|
|
|
<f:RadioItem Text="2级" Value="2" />
|
|
|
|
|
|
<f:RadioItem Text="3级" Value="3" />
|
|
|
|
|
|
</f:RadioButtonList>
|
|
|
|
|
|
<f:ToolbarFill runat="server"></f:ToolbarFill>
|
|
|
|
|
|
<f:Button runat="server" ID="btnSure" Icon="Accept" IconAlign="Left" Text="确定" OnClick="btnSure_Click" >
|
|
|
|
|
|
</f:Button>
|
|
|
|
|
|
</Items>
|
|
|
|
|
|
</f:Toolbar>
|
|
|
|
|
|
</Toolbars>
|
|
|
|
|
|
<Items>
|
2023-08-31 16:37:09 +08:00
|
|
|
|
<f:Tree ID="trWBS" EnableCollapse="true" ShowHeader="false" Title="WBS"
|
2023-08-24 15:33:21 +08:00
|
|
|
|
OnNodeExpand="trWBS_NodeExpand" AutoLeafIdentification="true"
|
|
|
|
|
|
runat="server" ShowBorder="false" EnableTextSelection="True">
|
|
|
|
|
|
</f:Tree>
|
|
|
|
|
|
</Items>
|
|
|
|
|
|
</f:Panel>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
<%--var menuID = '<%= Menu1.ClientID %>';--%>
|
|
|
|
|
|
// 返回false,来阻止浏览器右键菜单
|
|
|
|
|
|
function onRowContextMenu(event, rowId) {
|
|
|
|
|
|
// F(menuID).show(); //showAt(event.pageX, event.pageY);
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function reloadGrid() {
|
|
|
|
|
|
__doPostBack(null, 'reloadGrid');
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|