96 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ManPowerWorkGrid.aspx.cs" Inherits="FineUIPro.Web.JDGL.SGManPower.ManPowerWorkGrid" %>
 | |
| 
 | |
| <!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>施工人力计划</title>
 | |
|     <link href="../../res/css/common.css" rel="stylesheet" type="text/css"/>
 | |
|     <style type="text/css">
 | |
|         
 | |
|         .f-grid-row .f-grid-cell-inner {
 | |
|             white-space: normal;
 | |
|             word-break: break-all;
 | |
|         }
 | |
| 
 | |
|         .f-grid-row.yellow {
 | |
|             background-color: YellowGreen;
 | |
|             background-image: none;
 | |
|         }
 | |
|         
 | |
|         .f-grid-row.red {
 | |
|             background-color: Yellow;
 | |
|         }
 | |
|          .f-grid-cell[data-color=color1] {
 | |
|             background-color: Yellow;
 | |
|             color: #000000;
 | |
|         } 
 | |
|     </style>
 | |
| </head>
 | |
| <body>
 | |
| <form id="form1" runat="server">
 | |
|     <f:PageManager ID="PageManager1" AutoSizePanelID="Panel3" runat="server"/>
 | |
|     <f:Panel ID="Panel3" Margin="24px" runat="server" ShowBorder="false" ShowHeader="false" Layout="Region">
 | |
|         <Items>
 | |
|             <f:Panel runat="server" ID="panelCenterRegion" RegionPosition="Center" Layout="Fit"
 | |
|                      Title="中间面板" ShowBorder="True" ShowHeader="false" BodyPadding="10px" IconFont="_RoundPlus">
 | |
|                 <Items>
 | |
|                     <f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="合同执行跟踪表" EnableCollapse="true"
 | |
|                             runat="server" BoxFlex="1" DataKeyNames="Id" AllowCellEditing="true"
 | |
|                             ClicksToEdit="1" DataIDField="Id" AllowSorting="true" SortField="Id"
 | |
|                             SortDirection="DESC" OnSort="Grid1_Sort" EnableColumnLines="true" AllowColumnLocking="true" EnableSummary="true" SummaryPosition="Bottom"
 | |
|                             AllowPaging="True" IsDatabasePaging="true" PageSize="50" OnPageIndexChange="Grid1_PageIndexChange"
 | |
|                             EnableRowDoubleClickEvent="true">
 | |
|                         <Toolbars>
 | |
| 
 | |
|                             <f:Toolbar ID="Toolbar4" Position="Top" runat="server" ToolbarAlign="Right">
 | |
|                                 <Items>
 | |
|                                     <f:DropDownList runat="server" ID="drpUnitWork"  Label="装置"></f:DropDownList>
 | |
|                                     <f:DropDownList runat="server" ID="drpWorkPost" Label="岗位"></f:DropDownList>
 | |
|                                     <f:ToolbarFill runat="server"/>
 | |
|                                     <f:Button ID="btnQuery" ToolTip="查询" Text="查询" Icon="SystemSearch" runat="server" EnablePostBack="true"
 | |
|                                               OnClick="btnQuery_OnClick">
 | |
|                                     </f:Button>
 | |
|                                     <f:Button ID="btnOut" OnClick="btnOut_Click" runat="server" Text="导出" ToolTip="导出" Icon="FolderUp"
 | |
|                                               EnableAjax="false" DisableControlBeforePostBack="false">
 | |
|                                     </f:Button>
 | |
|                                     <f:Button ID="btnGetChart" ToolTip="图表" Icon="ChartPie" Text="统计图表"
 | |
|                                               EnablePostBack="true" OnClick="btnGetChart_Click" runat="server">
 | |
|                                     </f:Button>
 | |
|                                 </Items>
 | |
|                             </f:Toolbar>
 | |
|                         </Toolbars>
 | |
|                         <PageItems>
 | |
|                             <f:ToolbarSeparator ID="ToolbarSeparator1" runat="server">
 | |
|                             </f:ToolbarSeparator>
 | |
|                             <f:ToolbarText ID="ToolbarText1" runat="server" Text="每页记录数:">
 | |
|                             </f:ToolbarText>
 | |
|                             <f:DropDownList runat="server" ID="ddlPageSize" Width="80px" AutoPostBack="true"
 | |
|                                             OnSelectedIndexChanged="ddlPageSize_SelectedIndexChanged">
 | |
|                             </f:DropDownList>
 | |
|                         </PageItems>
 | |
|                     </f:Grid>
 | |
| 
 | |
|                 </Items>
 | |
|             </f:Panel>
 | |
|         </Items>
 | |
|     </f:Panel>
 | |
|     <f:Window ID="Window1" runat="server" Hidden="true" ShowHeader="true"
 | |
|               IsModal="true" Target="Parent" EnableMaximize="true" EnableResize="true"
 | |
|               Title="编辑施工人力计划" EnableIFrame="true" Height="650px" OnClose="Window1_Close"
 | |
|               Width="1200px">
 | |
|     </f:Window>
 | |
|     <f:Window ID="Window2" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
 | |
|               Target="Top" EnableResize="false" runat="server" OnClose="Window1_Close" IsModal="true"
 | |
|               Width="1200px" Height="650px">
 | |
|     </f:Window>
 | |
| </form>
 | |
| <script type="text/javascript">
 | |
|         
 | |
|         function reloadGrid() {
 | |
|             __doPostBack(null, 'reloadGrid');
 | |
|         }
 | |
|     </script>
 | |
| </body>
 | |
| </html> |