Files
MoonPro.net/MP-Tablet/WebUserControls/mod_confProd.ascx
T
2016-11-17 16:58:42 +01:00

31 lines
1.9 KiB
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_confProd.ascx.cs" Inherits="MoonProTablet.WebUserControls.mod_confProd" %>
<div data-role="content">
<div class="ui-grid-a">
<div class="ui-block-a" data-role="content">
<asp:Button runat="server" ID="btnShowConfProd" Text="Mostra Conferma" data-role="button" data-iconpos="bottom" data-icon="check"
data-theme="b" data-inline="false" OnClick="btnShowConfProd_Click" Width="100%" />
</div>
<div class="ui-block-b" data-role="content">
<asp:Button runat="server" ID="btnSalva" Text="Conferma Produzione" data-role="button" data-iconpos="bottom" data-icon="plus"
data-theme="e" data-inline="false" Visible="false" OnClick="btnSalva_Click" Width="100%" />
</div>
</div>
<div class="ui-grid-b">
<div class="ui-block-a" data-role="content">
<asp:Label runat="server" ID="lblNumPezzi" AssociatedControlID="txtNumPezzi" Text="Pezzi Prodotti (+)" />
<asp:TextBox runat="server" ID="txtNumPezzi" Font-Size="XX-Large" Width="5em" Enabled="false" AutoPostBack="True" OnTextChanged="txtNumPezzi_TextChanged" />
</div>
<div class="ui-block-b" data-role="content">
<asp:Label runat="server" ID="lblNumScarti" AssociatedControlID="txtNumScarti" Text="Pezzi Scarto (-)" />
<asp:TextBox runat="server" ID="txtNumScarti" Font-Size="XX-Large" Width="5em" Enabled="false" AutoPostBack="True" OnTextChanged="txtNumScarti_TextChanged" />
</div>
<div class="ui-block-c" data-role="content">
<asp:Label runat="server" ID="lblPzBuoni" AssociatedControlID="txtPzBuoni" Text="Pezzi Buoni" />
<asp:TextBox runat="server" ID="txtPzBuoni" Font-Size="XX-Large" Width="5em" Enabled="false" Text="---" />
</div>
</div>
<div class="ui-grid-solo">
<asp:Label runat="server" ID="lblOut" ForeColor="Red" />
</div>
</div>