98 lines
7.3 KiB
Plaintext
98 lines
7.3 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_filtroRicerca.ascx.cs" Inherits="ETS_DIP.WebUserControls.mod_filtroRicerca" %>
|
|
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
|
|
<%@ Register Src="mod_textAutocomplete.ascx" TagName="mod_textAutocomplete" TagPrefix="uc1" %>
|
|
<%@ Register Src="mod_periodoAnalisi.ascx" TagName="mod_periodoAnalisi" TagPrefix="uc2" %>
|
|
<% if (false)
|
|
{ %>
|
|
<link href="../css/BuildBlocks.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/ETS.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/ExtraComp.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/MasterPage.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/Style.css" rel="stylesheet" type="text/css" />
|
|
<% } %>
|
|
<div>
|
|
<div class="divSx secColA-5" style="width: 100%; text-align: left; margin: auto; height: 52px; vertical-align: bottom;">
|
|
<div style="padding: 2px 4px; font-size: 8pt;">
|
|
<%--area dx: update + scelta dim pagina--%>
|
|
<div class="divDx">
|
|
<asp:Label runat="server" ID="LabelblPageSize" Text="Record / pagina" CssClass="labelInput" /><br />
|
|
<asp:DropDownList ID="ddlPageSize" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlPageSize_SelectedIndexChanged">
|
|
<asp:ListItem Text="10" Value="10" />
|
|
<asp:ListItem Text="15" Value="15" Selected="True" />
|
|
<asp:ListItem Text="20" Value="20" />
|
|
<asp:ListItem Text="30" Value="30" />
|
|
<asp:ListItem Text="50" Value="50" />
|
|
</asp:DropDownList>
|
|
/ <asp:Label runat="server" ID="lblTotRec" />
|
|
</div>
|
|
<div class="divDx">
|
|
<asp:UpdateProgress ID="updtRicerca" runat="server" DisplayAfter="2" DynamicLayout="true">
|
|
<ProgressTemplate>
|
|
<div id="progress_back">
|
|
</div>
|
|
<div id="progress_top">
|
|
<asp:Image ID="ProgressBar" ImageUrl="~/images/ajax-loader.gif" runat="server" />
|
|
</div>
|
|
</ProgressTemplate>
|
|
</asp:UpdateProgress>
|
|
</div>
|
|
<%--Area sx: filtri--%>
|
|
<div class="divSx" style="width: 175px;">
|
|
<uc2:mod_periodoAnalisi ID="mod_periodoAnalisi1" runat="server" realtimeUpdate="true" />
|
|
</div>
|
|
<div class="divSx" style="width: 300px; font-size: 7pt; height: 0.9em;">
|
|
<div style="height: 24px;">
|
|
<div class="divSx" style="width: 275px; white-space: nowrap; height: 0.9em;">
|
|
<asp:CheckBox runat="server" ID="chkCommessa" Text="Filtra <u>C</u>ommessa" CssClass="labelInput" AutoPostBack="true" OnCheckedChanged="chkCommessa_CheckedChanged" Font-Size="7pt" ToolTip="Filtro Commessa" AccessKey="c" />
|
|
<uc1:mod_textAutocomplete ID="tacCommesse" runat="server" ServicePath="~/WS/AutoCompletamento.asmx" ServiceMethod="elencoCommesseByDoc" minCharAutocomplete="1" showKey="false" toolTip="Digitare per iniziare ricerca, min 1 char" Visible="false" />
|
|
</div>
|
|
</div>
|
|
<div style="height: 24px;">
|
|
<div class="divSx" style="width: 275px; white-space: nowrap; height: 0.9em;">
|
|
<asp:CheckBox runat="server" ID="chkFase" Text="Filtra F<u>a</u>se" CssClass="labelInputChiaro" AutoPostBack="true" OnCheckedChanged="chkFase_CheckedChanged" Font-Size="7pt" ToolTip="Filtro Fase" AccessKey="a" />
|
|
<uc1:mod_textAutocomplete ID="tacFasi" runat="server" ServicePath="~/WS/AutoCompletamento.asmx" ServiceMethod="elencoFasiByDoc" minCharAutocomplete="1" showKey="false" toolTip="Digitare per iniziare ricerca, min 1 char" Visible="false" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="divSx" style="width: 300px; font-size: 7pt; height: 0.9em;">
|
|
<div style="height: 24px;">
|
|
<div class="divSx" style="width: 180px;">
|
|
<div class="divSx" style="width: 150px; white-space: nowrap;">
|
|
<asp:CheckBox runat="server" ID="chkFonte" Text="Fil<u>t</u>ra Da/A" CssClass="labelInput" AutoPostBack="true" OnCheckedChanged="chkFonte_CheckedChanged" Font-Size="7pt" ToolTip="Filtro Da/A" AccessKey="t" />
|
|
<uc1:mod_textAutocomplete ID="tacFonti" runat="server" ServicePath="~/WS/AutoCompletamento.asmx" ServiceMethod="elencoFontiByDoc" minCharAutocomplete="1" showKey="false" toolTip="Digitare per iniziare ricerca, min 1 char" Visible="false" />
|
|
</div>
|
|
</div>
|
|
<div class="divSx" style="width: 100px; white-space: nowrap;">
|
|
<asp:CheckBox runat="server" ID="chkInOut" Text="Filtra <u>I</u>n/Out" CssClass="labelInput" AutoPostBack="true" OnCheckedChanged="chkInOut_CheckedChanged" Font-Size="7pt" ToolTip="Filtro In/Out" AccessKey="I" />
|
|
<asp:RadioButtonList ID="rblInOut" runat="server" AutoPostBack="true" RepeatDirection="Horizontal" RepeatLayout="Flow" OnSelectedIndexChanged="rblInOut_SelectedIndexChanged" Visible="false">
|
|
<asp:ListItem Value="In" Text=" In " />
|
|
<asp:ListItem Value="Out" Text="Out" Selected="True" />
|
|
</asp:RadioButtonList>
|
|
</div>
|
|
</div>
|
|
<div style="height: 24px;">
|
|
<div class="divSx" style="width: 225px; white-space: nowrap;">
|
|
<asp:CheckBox runat="server" ID="chkRedattore" Text="<u>R</u>edattore" CssClass="labelInputChiaro" AutoPostBack="true" OnCheckedChanged="chkRedattore_CheckedChanged" Font-Size="7pt" ToolTip="Filtro In/Out" AccessKey="r" />
|
|
<uc1:mod_textAutocomplete ID="tacRedattore" runat="server" ServicePath="~/WS/AutoCompletamento.asmx" ServiceMethod="elencoRedattoriByDoc" minCharAutocomplete="1" showKey="false" toolTip="Digitare per iniziare ricerca, min 1 char" Visible="false" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="divSx" style="margin-top: 2px; width: 175px;">
|
|
<div style="margin-top: 1px;">
|
|
<asp:Label runat="server" ID="lblCerca" Text="Ricerca Libera" CssClass="labelInput" />
|
|
</div>
|
|
<div style="margin-top: 2px;">
|
|
<asp:TextBox runat="server" ID="txtSearchAll" OnTextChanged="txtSearchAll_TextChanged" AutoPostBack="True" Width="12em" />
|
|
<asp:AutoCompleteExtender ID="txtSearchAllAce" runat="server" TargetControlID="txtSearchAll" ServicePath="~/WS/AutoCompletamento.asmx" ServiceMethod="elencoTagRicerca" CompletionInterval="10" MinimumPrefixLength="1" CompletionListCssClass="autocompleteListCssClass" CompletionListItemCssClass="autocomplete" CompletionListHighlightedItemCssClass="autocompleteHiglight" CompletionListElementID="autocompleteElemID" />
|
|
</div>
|
|
</div>
|
|
<div class="divSx blockSizeSmall">
|
|
<asp:Button runat="server" ID="btnUpdate" Text="Update" Enabled="false" OnClick="btnUpdate_Click" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|