28 lines
1.7 KiB
Plaintext
28 lines
1.7 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_MachSem.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_MachSem" %>
|
|
|
|
<asp:HiddenField runat="server" ID="hfMachine" Value="NE00" />
|
|
<asp:HiddenField runat="server" ID="hfMachClass" Value="light" />
|
|
<asp:HiddenField runat="server" ID="hfStat01" Value="warning" />
|
|
<asp:HiddenField runat="server" ID="hfStat02" Value="success" />
|
|
<asp:HiddenField runat="server" ID="hfStat03" Value="danger" />
|
|
|
|
<div class="row" runat="server" id="divSelect">
|
|
<asp:DropDownList runat="server" ID="ddlMachine" CssClass="form-control" AutoPostBack="True" OnSelectedIndexChanged="ddlMachine_SelectedIndexChanged">
|
|
<asp:ListItem Text="-- PLEASE SELECT ---" Value="" />
|
|
<asp:ListItem Text="NE01" Value="NE01" />
|
|
<asp:ListItem Text="NE02" Value="NE02" />
|
|
</asp:DropDownList>
|
|
</div>
|
|
|
|
<div class="row" runat="server" id="divRuntime">
|
|
<div class="col-3">
|
|
<asp:LinkButton runat="server" ID="lbtReset" class="btn btn-info btn-block text-center" OnClick="lbtReset_Click"><i class="fa fa-refresh" aria-hidden="true"></i> <%: hfMachine.Value %></asp:LinkButton>
|
|
</div>
|
|
<div class="col-9">
|
|
<div class="d-flex text-center">
|
|
<div class="p-2 bg-<%: hfStat01.Value %> flex-fill"><i class="fa fa-qrcode" aria-hidden="true"></i> <%: traduci("print") %></div>
|
|
<div class="p-2 bg-<%: hfStat02.Value %> flex-fill"><i class="fa fa-cogs" aria-hidden="true"></i> <%: traduci("CNC") %></div>
|
|
<div class="p-2 bg-<%: hfStat03.Value %> flex-fill"><i class="fa fa-hand-rock-o" aria-hidden="true"></i> <%: traduci("unload") %></div>
|
|
</div>
|
|
</div>
|
|
</div> |