Files
ETS/ETS-WS/ETS-WS/WebUserControls/mod_inputDati.ascx
T
2012-09-21 16:05:37 +02:00

124 lines
8.0 KiB
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_inputDati.ascx.cs"
Inherits="ETS_WS.WebUserControls.mod_inputDati" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<%@ Register Src="mod_textAutocomplete.ascx" TagName="mod_textAutocomplete" TagPrefix="uc1" %>
<% 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" style="width: 100%; text-align: left; margin: auto auto auto auto;
background-color: #DEDEDE; height: 480px; vertical-align: middle;">
<div style="padding: 4px;">
<%--input dati--%>
<div class="clearDiv">
<div class="divSx">
<asp:Label runat="server" ID="lblProtocollo" Text="Protocollo" CssClass="labelInput" /><br />
<asp:RadioButtonList ID="rblProto" runat="server" AutoPostBack="true" RepeatDirection="Horizontal"
RepeatLayout="Flow" CssClass="radioBtn" OnSelectedIndexChanged="rblProto_SelectedIndexChanged">
<asp:ListItem Value="0" Text="No" />
<asp:ListItem Value="1" Text="Si" />
</asp:RadioButtonList>
</div>
<div class="divDx fontMedio" style="padding-top: 16px; padding-right: 4px;">
<asp:Label runat="server" ID="lblNumProto" />
</div>
</div>
<div class="clearDiv">
<asp:Label runat="server" ID="lblInOut" Text="In/Out" CssClass="labelInput" /><br />
<asp:RadioButtonList ID="rblInOut" runat="server" AutoPostBack="true" RepeatDirection="Horizontal"
RepeatLayout="Flow" CssClass="radioBtn" OnSelectedIndexChanged="rblInOut_SelectedIndexChanged">
<asp:ListItem Value="In" Text="In" />
<asp:ListItem Value="Out" Text="Out" Selected="True" />
</asp:RadioButtonList>
</div>
<div class="clearDiv">
<asp:Label runat="server" ID="lblCommessa" Text="Commessa (autocomplete)" CssClass="labelInput" /><br />
<uc1:mod_textAutocomplete ID="tacCommesse" runat="server" ServicePath="~/WS/AutoCompletamento.asmx"
ServiceMethod="elencoCommesse" minCharAutocomplete="2" showKey="false" toolTip="Digitare per iniziare ricerca, min 2 char" />
</div>
<div class="clearDiv">
<asp:Label runat="server" ID="lblFase" Text="Fase (autocomplete)" CssClass="labelInput" /><br />
<uc1:mod_textAutocomplete ID="tacFasi" runat="server" ServicePath="~/WS/AutoCompletamento.asmx"
ServiceMethod="elencoFasi" minCharAutocomplete="1" showKey="false" toolTip="Digitare per iniziare ricerca, min 1 char" />
</div>
<div class="clearDiv">
<asp:Label runat="server" ID="lblFonte" Text="Fonte (autocomplete)" CssClass="labelInput"
TabIndex="0" />
<br />
<uc1:mod_textAutocomplete ID="tacFonti" runat="server" ServicePath="~/WS/AutoCompletamento.asmx"
ServiceMethod="elencoFonti" minCharAutocomplete="3" showKey="false" toolTip="Digitare per iniziare ricerca, min 3 char" />
</div>
<div class="clearDiv">
<asp:Label runat="server" ID="lblOggetto" Text="Oggetto" CssClass="labelInput" /><br />
&nbsp;<asp:TextBox runat="server" ID="txtOggetto" Width="20em" ToolTip="Campo libero"
OnTextChanged="txtOggetto_TextChanged" />
</div>
<div class="clearDiv">
<asp:Label runat="server" ID="lblAutore" Text="Autore (autocomplete)" CssClass="labelInput" /><br />
<uc1:mod_textAutocomplete ID="tacAutore" runat="server" ServicePath="~/WS/AutoCompletamento.asmx"
ServiceMethod="elencoAutori" minCharAutocomplete="1" showKey="false" toolTip="Digitare per iniziare ricerca, min 1 char" />
</div>
<div class="clearDiv">
<asp:Label runat="server" ID="lblRedattore" Text="Redattore (autocomplete)" CssClass="labelInput" /><br />
<uc1:mod_textAutocomplete ID="tacRedattore" runat="server" ServicePath="~/WS/AutoCompletamento.asmx"
ServiceMethod="elencoAutori" minCharAutocomplete="1" showKey="false" toolTip="Digitare per iniziare ricerca, min 1 char" />
</div>
<div class="clearDiv">
<div class="divSx">
<asp:Label runat="server" ID="lblDataDoc" Text="Data Documento" CssClass="labelInput" /><br />
&nbsp;<asp:TextBox runat="server" ID="txtDataDoc" Width="8em" ToolTip="Data Documento" />
<asp:CalendarExtender runat="server" FirstDayOfWeek="Monday" ID="ceDataDoc" TargetControlID="txtDataDoc" />
</div>
<div class="divDx">
<asp:Label runat="server" ID="lblDataRic" Text="Data Ricezione" CssClass="labelInput" /><br />
&nbsp;<asp:TextBox runat="server" ID="txtDataRic" Width="8em" ToolTip="Data Ricezione" />
<asp:CalendarExtender runat="server" FirstDayOfWeek="Monday" ID="ceDataRic" TargetControlID="txtDataRic" />
</div>
</div>
<div class="clearDiv">
<div class="divSx" style="background-color: #999; width: 100%; color: White; vertical-align: middle;
padding: 2px; margin-top: 8px;">
<asp:Label runat="server" ID="Label1" Text="Etichette documento" CssClass="labelInput" /><br />
<asp:CheckBoxList ID="cblTags" runat="server" DataSourceID="odsTags" RepeatDirection="Horizontal"
DataTextField="tag" DataValueField="idxTag" RepeatLayout="Flow">
</asp:CheckBoxList>
<asp:ObjectDataSource ID="odsTags" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="ETS_Data.DS_WebScipTableAdapters.AnagTagsTableAdapter">
</asp:ObjectDataSource>
</div>
</div>
<div class="clearDiv">
<div class="divSx" style="background-color: #FF3C3C; width: 100%; color: White; vertical-align: middle;
padding: 2px;">
<asp:CheckBox runat="server" ID="chkIsRed" Text="Classificato (Red)" />
</div>
</div>
<div class="clearDiv" style="background-color: #333; color: White;">
<asp:Label runat="server" ID="lblPath" Text="Percorso Cartella" CssClass="labelInput" /><br />
<asp:Panel runat="server" ID="pnlPath" ScrollBars="Horizontal">
<div class="divSx" style="width: 100%; padding: 2px; margin-top: 4px; margin-bottom: 4px;
font-size: 7pt; white-space: nowrap;">
<b>
<asp:Label runat="server" ID="lblFullPath" /></b>
</div>
</asp:Panel>
</div>
<div class="clearDiv">
<asp:Button ID="btnUpdate" runat="server" Text="Aggiorna" CssClass="submit" TabIndex="1"
OnClick="btnUpdate_Click" />
&nbsp;
<asp:Button ID="btnSubmit" runat="server" Text="Archivia" CssClass="submit" OnClick="btnSubmit_Click" />
</div>
<div class="clearDiv">
generatore:<br />
Lettera (doc) | FAX (doc) | Email
</div>
</div>
</div>
</div>