-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInProgress.aspx
More file actions
103 lines (102 loc) · 6.84 KB
/
InProgress.aspx
File metadata and controls
103 lines (102 loc) · 6.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<%@ page language="VB" autoeventwireup="false" inherits="OrderRouting_InProgress, App_Web_inprogress.aspx.62c128f4" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!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>In-Progress</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="scr" runat="server">
</asp:ScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="grdPlanners">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdPlanners" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Transparency="30"
BackColor="#E0E0E0" InitialDelayTime="500">
<asp:Image ID="Image1" Style="margin-top: 10px" runat="server" ImageUrl="../Images/ajax_LoadingProgressBar.gif"
BorderWidth="0px" ></asp:Image>
</telerik:RadAjaxLoadingPanel>
<telerik:RadGrid ID="grdPlanners" Skin="Telerik" ShowStatusBar="True" runat="server"
AutoGenerateColumns="False" AllowPaging="True" PageSize="15" AllowSorting="True">
<MasterTableView Width="100%" Name="Parent" DataMember="Parent">
<DetailTables>
<telerik:GridTableView Width="100%" runat="server" Name="Child" DataMember="Child">
<DetailTables>
<telerik:GridTableView Width="100%" runat="server" Name="GrandChild" DataMember="GrandChild">
<Columns>
<telerik:GridBoundColumn HeaderText="Date" HeaderButtonType="TextButton" DataField="Date"
UniqueName="Date" SortExpression="Date">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="P.O. Number" HeaderButtonType="TextButton" DataField="P.O. Number"
UniqueName="P.O. Number" SortExpression="P.O. Number">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="S.O. Number" HeaderButtonType="TextButton" DataField="S.O. Number"
UniqueName="S.O.Number" SortExpression="S.O. Number">
</telerik:GridBoundColumn>
</Columns>
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn Resizable="False" Visible="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
</telerik:GridTableView>
</DetailTables>
<Columns>
<telerik:GridBoundColumn HeaderText="Company" HeaderButtonType="TextButton" DataField="Company"
UniqueName="Company" SortExpression="Company">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Street Address" HeaderButtonType="TextButton"
DataField="Street Address" UniqueName="Street Address" SortExpression="Street Address">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="City and Province" HeaderButtonType="TextButton"
DataField="City and Province" UniqueName="City and Province" SortExpression="City and Province">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Country and Postal Code" HeaderButtonType="TextButton"
DataField="Country and Postal Code" UniqueName="Country and Postal Code" SortExpression="Country and Postal Code">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="ContactID" HeaderButtonType="TextButton" DataField="ContactID"
UniqueName="ContactID" SortExpression="ContactID" Visible="false">
</telerik:GridBoundColumn>
</Columns>
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn Resizable="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
</telerik:GridTableView>
</DetailTables>
<Columns>
<telerik:GridBoundColumn HeaderText="Planner Name" HeaderButtonType="TextButton"
DataField="Planner Name" UniqueName="Planner Name" SortExpression="Planner Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Start" HeaderButtonType="TextButton" DataField="Start"
UniqueName="Start" SortExpression="Start">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="PlannerSessionID" HeaderButtonType="TextButton"
DataField="PlannerSessionID" UniqueName="PlannerSessionID" SortExpression="PlannerSessionID"
Visible="false">
</telerik:GridBoundColumn>
</Columns>
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn Resizable="False">
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
</MasterTableView>
</telerik:RadGrid>
</div>
</form>
</body>
</html>