16 lines
1.4 KiB
Plaintext
16 lines
1.4 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_textAutocomplete.ascx.cs" Inherits="ETS_WS.WebUserControls.mod_textAutocomplete" %>
|
|
<% if (false)
|
|
{ %>
|
|
<script src="../Scripts/jquery-1.6.4-vsdoc.js" type="text/javascript"></script>
|
|
<link href="../css/Style.css" rel="stylesheet" type="text/css" />
|
|
<link href="../Content/themes/Steamware/css/steamware/jquery-ui-1.9.1.custom.min.css" rel="stylesheet" type="text/css" />
|
|
<% } %>
|
|
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
|
|
<asp:TextBox runat="server" ID="hiddenFieldID" AutoPostBack="true" OnTextChanged="hiddenFieldID_TextChanged" Visible="true"
|
|
ViewStateMode="Enabled" Width="3em" Font-Size="6pt" BackColor="Transparent" BorderStyle="None" />
|
|
<asp:TextBox runat="server" ID="txtValue" Width="95%" AutoPostBack="true" OnTextChanged="txtValue_TextChanged" />
|
|
<asp:AutoCompleteExtender ID="txtValueAce" runat="server" TargetControlID="txtValue" ServicePath="~/WS/AutoCompletamento.asmx"
|
|
ServiceMethod="elencoFonti" CompletionInterval="10" MinimumPrefixLength="1" CompletionListCssClass="ui-corner-all autocompleteListCssClass"
|
|
CompletionListItemCssClass="autocomplete" CompletionListHighlightedItemCssClass="autocompleteHiglight" CompletionListElementID="autocompleteElemID"
|
|
CompletionSetCount="10" />
|
|
<asp:Button runat="server" ID="btnPost" OnClick="btnPost_Click" Visible="false" /> |