bozza modifica x sistemazione grafica elemento autocomplete
This commit is contained in:
BIN
Binary file not shown.
+1
-1
@@ -1,4 +1,4 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/Bootstrap.Master" AutoEventWireup="true" CodeBehind="QuoteDet.aspx.cs" Inherits="C2P.QuoteDet" %>
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.Master" AutoEventWireup="true" CodeBehind="QuoteDet.aspx.cs" Inherits="C2P.QuoteDet" %>
|
||||
<%@ Register src="WebUserControls/mod_QuoteDet.ascx" tagname="mod_QuoteDet" tagprefix="uc1" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
|
||||
</asp:Content>
|
||||
|
||||
@@ -74,21 +74,29 @@
|
||||
});
|
||||
</script>
|
||||
<%--controlli "principali"--%>
|
||||
<asp:Label runat="server" ID="lblField" Text="Cerca:" AssociatedControlID="txtSelezione" Font-Size="0.8em" />
|
||||
<asp:Button runat="server" ID="btnPost" OnClick="btnPost_Click" Visible="true" Text="+" CssClass="ui-corner-all" Font-Size="7pt" />
|
||||
<asp:TextBox runat="server" ID="txtSelezione" CssClass="searchinput" OnTextChanged="txtSelezione_TextChanged" AutoPostBack="True" />
|
||||
<asp:Button runat="server" ID="btnReset" Visible="true" Text="X" OnClick="btnReset_Click" ToolTip="reset" CssClass="ui-corner-all" Font-Size="7pt" />
|
||||
|
||||
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon">@</span>
|
||||
<input type="text" class="form-control" placeholder="Username">
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<asp:Button runat="server" ID="btnPost" OnClick="btnPost_Click" Visible="false" Text="+" CssClass="ui-corner-all" Font-Size="7pt" />
|
||||
<span class="input-group-addon">
|
||||
<asp:Label runat="server" ID="lblField" Text="Cerca:" AssociatedControlID="txtSelezione" Font-Size="0.8em" /></span>
|
||||
<asp:TextBox runat="server" ID="txtSelezione" CssClass="searchinput" OnTextChanged="txtSelezione_TextChanged" AutoPostBack="True" class="form-control" placeholder="Ricerca cliente" TextMode="SingleLine"></asp:TextBox>
|
||||
</div>
|
||||
<asp:Button runat="server" ID="btnReset" Visible="true" Text="X" OnClick="btnReset_Click" ToolTip="reset" CssClass="ui-corner-all" Font-Size="7pt" />
|
||||
<asp:TextBox runat="server" ID="hiddenFieldID" AutoPostBack="true" OnTextChanged="hiddenFieldID_TextChanged" Visible="true" ViewStateMode="Enabled" Width="0em" Font-Size="6pt" BackColor="Transparent" BorderStyle="None" />
|
||||
<%--controlli "accessori"--%>
|
||||
<asp:TextBox runat="server" ID="txtMinCharAutoCom" Text="2" Visible="false" Width="1em" />
|
||||
<asp:TextBox runat="server" ID="txtServiceUrl" Text="Services/WS_data.asmx/Test" Visible="false" Width="1em" />
|
||||
|
||||
<style>
|
||||
.ui-autocomplete-category {
|
||||
font-weight: bold;
|
||||
padding: .2em .4em;
|
||||
margin: .8em 0 .2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
</style>
|
||||
.ui-autocomplete-category {
|
||||
font-weight: bold;
|
||||
padding: .2em .4em;
|
||||
margin: .8em 0 .2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
</style>
|
||||
|
||||
+9
-9
@@ -12,15 +12,6 @@ namespace C2P.WebUserControls {
|
||||
|
||||
public partial class mod_autocomplete {
|
||||
|
||||
/// <summary>
|
||||
/// lblField control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblField;
|
||||
|
||||
/// <summary>
|
||||
/// btnPost control.
|
||||
/// </summary>
|
||||
@@ -30,6 +21,15 @@ namespace C2P.WebUserControls {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Button btnPost;
|
||||
|
||||
/// <summary>
|
||||
/// lblField control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblField;
|
||||
|
||||
/// <summary>
|
||||
/// txtSelezione control.
|
||||
/// </summary>
|
||||
|
||||
@@ -12,10 +12,8 @@
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="row">
|
||||
<div class="col-lg-8">
|
||||
<uc1:mod_autocomplete runat="server" ID="acCliente" contextKey="c" minCharAutocomplete="2" textEmPerc="75" showKey="false" ServicePath="Services/WS_data.asmx/Clients" />
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="col-lg-12">
|
||||
<uc1:mod_autocomplete runat="server" ID="acCliente" contextKey="c" minCharAutocomplete="2" showKey="false" ServicePath="Services/WS_data.asmx/Clients" />
|
||||
<asp:Label runat="server" ID="lblDescrCli" />
|
||||
</div>
|
||||
</div>
|
||||
@@ -25,6 +23,10 @@
|
||||
</div>
|
||||
<div class="col-lg-10">
|
||||
elenco
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon">@</span>
|
||||
<input type="text" class="form-control" placeholder="Username">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
||||
@@ -33,7 +33,12 @@ namespace C2P.WebUserControls
|
||||
public string liClass(string nomeElem)
|
||||
{
|
||||
string answ = "";
|
||||
if (_paginaCorrente.IndexOf(nomeElem) >= 0) answ = "active";
|
||||
try
|
||||
{
|
||||
if (_paginaCorrente.IndexOf(nomeElem) >= 0) answ = "active";
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
/// <summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -63,3 +63,20 @@
|
||||
18:10:00 0179 [LEMMA] - ac[C]liente
|
||||
18:12:50 5289 [LEMMA] - ac[C]liente
|
||||
18:14:16 1564 [LEMMA] - ac[C]liente
|
||||
18:37:03 2952 [LEMMA] - ac[C]liente
|
||||
18:37:08 0427 [LEMMA] - ac[C]liente
|
||||
18:37:32 0692 [LEMMA] - ac[C]liente
|
||||
18:38:52 6144 [LEMMA] - ac[C]liente
|
||||
18:40:50 7634 [LEMMA] - ac[C]liente
|
||||
18:41:30 1724 [LEMMA] - ac[C]liente
|
||||
18:44:19 7165 [LEMMA] - ac[C]liente
|
||||
18:45:29 6141 [LEMMA] - ac[C]liente
|
||||
18:46:29 1459 [LEMMA] - ac[C]liente
|
||||
18:47:03 8951 [LEMMA] - ac[C]liente
|
||||
18:47:39 2345 [LEMMA] - ac[C]liente
|
||||
18:48:21 1541 [LEMMA] - ac[C]liente
|
||||
18:48:51 2081 [LEMMA] - ac[C]liente
|
||||
18:50:13 6644 [LEMMA] - ac[C]liente
|
||||
18:51:24 3819 [LEMMA] - ac[C]liente
|
||||
18:52:07 5757 [LEMMA] - ac[C]liente
|
||||
18:54:28 4598 [LEMMA] - ac[C]liente
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user