Avanzamento grafico visualizzazione lavoro su post LOAD

This commit is contained in:
Samuele E. Locatelli
2019-09-03 15:35:25 +02:00
parent 9cf952075e
commit afc7170e22
13 changed files with 692 additions and 153 deletions
@@ -1,25 +1,20 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_stackNextloading.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_stackNextloading" %>
<asp:HiddenField ID="hfBatchID" runat="server" />
<asp:FormView ID="frmView" runat="server" DataKeyNames="StackID" DataSourceID="ods">
<asp:FormView ID="frmView" runat="server" DataKeyNames="StackID" DataSourceID="ods" Width="100%">
<ItemTemplate>
Code:
<asp:Label ID="StackIDLabel" runat="server" Text='<%# Eval("StackDtmx") %>' />
<br />
StackIndex:
<asp:Label ID="StackIndexLabel" runat="server" Text='<%# Bind("StackIndex") %>' />
<br />
NumSheets:
<asp:Label ID="NumSheetsLabel" runat="server" Text='<%# Bind("NumSheets") %>' />
<br />
NumSheetsPrinted:
<asp:Label ID="NumSheetsPrintedLabel" runat="server" Text='<%# Bind("NumSheetsPrinted") %>' />
<br />
NumSheetsWorked:
<asp:Label ID="NumSheetsWorkedLabel" runat="server" Text='<%# Bind("NumSheetsWorked") %>' />
<div class="row border border-primary rounded">
<div class="col-4 text-left">
Stack: <b><asp:Label ID="StackIndexLabel" runat="server" Text='<%# Eval("StackIndex") %>' /> / <asp:Label ID="NumSheetsLabel" runat="server" Text='<%# Eval("NumSheets") %>' /></b>
</div>
<div class="col-4 text-center">
Required: <b>
<asp:Label ID="StackIDLabel" runat="server" Text='<%# Eval("StackDtmx") %>' /></b>
</div>
<div class="col-4 text-right">
Prt / Wrk: <b><asp:Label ID="NumSheetsPrintedLabel" runat="server" Text='<%# Bind("NumSheetsPrinted") %>' /> / <asp:Label ID="NumSheetsWorkedLabel" runat="server" Text='<%# Bind("NumSheetsWorked") %>' /></b>
</div>
</div>
</ItemTemplate>
</asp:FormView>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getNextByBatch" TypeName="AppData.DS_AppTableAdapters.StackListTableAdapter">