53 lines
3.3 KiB
Plaintext
53 lines
3.3 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_commenti.ascx.cs" Inherits="MoonProTablet.WebUserControls.mod_commenti" %>
|
|
<div data-role="content">
|
|
<asp:Label runat="server" ID="lblNumGG" Text="Commenti da mostrare" AssociatedControlID="rblPageSize" />
|
|
<fieldset data-role="controlgroup" data-type="horizontal">
|
|
<asp:RadioButtonList ID="rblPageSize" runat="server" RepeatDirection="Horizontal" AutoPostBack="true">
|
|
<asp:ListItem Text="5" Value="5" Selected="True" />
|
|
<asp:ListItem Text="10" Value="10" />
|
|
<asp:ListItem Text="25" Value="25" />
|
|
<asp:ListItem Text="50" Value="50" />
|
|
</asp:RadioButtonList>
|
|
</fieldset>
|
|
<ul data-role="listview" data-inset="true">
|
|
<asp:Repeater ID="repComm" runat="server" DataSourceID="odsComm">
|
|
<ItemTemplate>
|
|
<li>
|
|
<div class="divSx">
|
|
<asp:ImageButton runat="server" ID="btnEdit" ImageUrl="~/images/edit_l.png" CommandArgument='<%# Eval("InizioStato") %>' OnClick="btnEdit_Click" Visible='<%# enableEdit %>' />
|
|
</div>
|
|
<div class="divDx">
|
|
<asp:ImageButton runat="server" ID="btnDel" ImageUrl="~/images/elimina_l.png" CommandArgument='<%# Eval("InizioStato") %>' OnClick="btnDel_Click" Visible='<%# enableEdit %>' />
|
|
</div>
|
|
<div style="font-size: smaller;">
|
|
<div>
|
|
<div class="divSx" style="font-size: x-small;">
|
|
<asp:Label ID="Label3" runat="server" Text='<%# Eval("Operatore", "<b>{0}</b>") %>' ForeColor="#ACACAC" />
|
|
</div>
|
|
</div>
|
|
<div class="clearDiv">
|
|
<asp:Label ID="Label4" runat="server" Text='<%# Eval("Value") %>' Font-Bold="false" />
|
|
</div>
|
|
<div class="clearDiv" style="font-size: xx-small; border-top: 1px solid #ACACAC; color: #ACACAC">
|
|
<div class="divSx">
|
|
<asp:Label ID="Label5" runat="server" Text='<%# Eval("InizioStato", "{0:dd/MM/yyyy HH:mm:ss}") %>' Font-Bold="false" />
|
|
</div>
|
|
<div class="divDx">
|
|
<asp:Label runat="server" ID="Label1" Text='<%# Eval("CodArticolo") %>' Font-Bold="false" />
|
|
<asp:Label runat="server" ID="Label2" Text='<%# Eval("idxODL","ODL{0}") %>' Font-Bold="false" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="clearDiv"></div>
|
|
</li>
|
|
</ItemTemplate>
|
|
</asp:Repeater>
|
|
</ul>
|
|
<asp:ObjectDataSource ID="odsComm" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="MapoDb.DS_UtilityTableAdapters.CommentiTableAdapter">
|
|
<SelectParameters>
|
|
<asp:SessionParameter DefaultValue="0" Name="IdxMacchina" SessionField="idxMacchina" Type="String" />
|
|
<asp:ControlParameter ControlID="rblPageSize" DefaultValue="10" Name="showMax" PropertyName="SelectedValue" Type="Int32" />
|
|
</SelectParameters>
|
|
</asp:ObjectDataSource>
|
|
</div>
|