43 lines
1.9 KiB
Plaintext
43 lines
1.9 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_turni.ascx.cs" Inherits="MoonProTablet.WebUserControls.mod_turni" %>
|
|
|
|
<!-- turni -->
|
|
<div data-theme="c">
|
|
<div class="ui-grid-a">
|
|
<div class="ui-block-a" style="text-align: right; padding-right: 10px; vertical-align: middle;">
|
|
<h3>
|
|
Turno 1:</h3>
|
|
</div>
|
|
<div class="ui-block-b">
|
|
<asp:DropDownList name="flip-1" runat="server" ID="ddlT1" data-role="slider" AutoPostBack="true" OnSelectedIndexChanged="ddlT1_SelectedIndexChanged">
|
|
<asp:ListItem Text="Fermo" Value="False" />
|
|
<asp:ListItem Text="Attivo" Value="True" />
|
|
</asp:DropDownList>
|
|
</div>
|
|
</div>
|
|
<div class="ui-grid-a">
|
|
<div class="ui-block-a" style="text-align: right; padding-right: 10px; vertical-align: middle;">
|
|
<h3>
|
|
Turno 2:</h3>
|
|
</div>
|
|
<div class="ui-block-b">
|
|
<asp:DropDownList name="flip-2" runat="server" ID="ddlT2" data-role="slider" AutoPostBack="true" OnSelectedIndexChanged="ddlT2_SelectedIndexChanged">
|
|
<asp:ListItem Text="Fermo" Value="False" />
|
|
<asp:ListItem Text="Attivo" Value="True" />
|
|
</asp:DropDownList>
|
|
</div>
|
|
</div>
|
|
<div class="ui-grid-a">
|
|
<div class="ui-block-a" style="text-align: right; padding-right: 10px; vertical-align: middle;">
|
|
<h3>
|
|
Turno 3:</h3>
|
|
</div>
|
|
<div class="ui-block-b">
|
|
<asp:DropDownList name="flip-3" runat="server" ID="ddlT3" data-role="slider" AutoPostBack="true" OnSelectedIndexChanged="ddlT3_SelectedIndexChanged">
|
|
<asp:ListItem Text="Fermo" Value="False" />
|
|
<asp:ListItem Text="Attivo" Value="True" />
|
|
</asp:DropDownList>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /turni -->
|