fix grafici...
This commit is contained in:
@@ -9,121 +9,124 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head runat="server">
|
||||
<meta charset="utf-8" />
|
||||
<title><%: Page.Title %> - PROJ-ETS</title>
|
||||
<asp:PlaceHolder runat="server">
|
||||
<%: Scripts.Render("~/bundles/modernizr") %>
|
||||
</asp:PlaceHolder>
|
||||
<webopt:BundleReference runat="server" Path="~/Content/css" />
|
||||
<meta charset="utf-8" />
|
||||
<title><%: Page.Title %> - PROJ-ETS</title>
|
||||
<asp:PlaceHolder runat="server">
|
||||
<%: Scripts.Render("~/bundles/modernizr") %>
|
||||
</asp:PlaceHolder>
|
||||
<webopt:BundleReference runat="server" Path="~/Content/css" />
|
||||
|
||||
<webopt:BundleReference ID="brJqueryUi" runat="server" Path="~/Content/themes/base/css" />
|
||||
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<asp:ContentPlaceHolder runat="server" ID="HeadContent" />
|
||||
<webopt:BundleReference ID="brJqueryUi" runat="server" Path="~/Content/themes/base/css" />
|
||||
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<asp:ContentPlaceHolder runat="server" ID="HeadContent" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<form runat="server">
|
||||
<asp:ScriptManager runat="server">
|
||||
<Scripts>
|
||||
<%--Framework Scripts--%>
|
||||
<asp:ScriptReference Name="MsAjaxBundle" />
|
||||
<asp:ScriptReference Name="jquery" />
|
||||
<asp:ScriptReference Name="jquery.ui.combined" />
|
||||
<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
|
||||
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
|
||||
<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
|
||||
<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
|
||||
<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
|
||||
<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
|
||||
<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
|
||||
<asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
|
||||
<asp:ScriptReference Name="WebFormsBundle" />
|
||||
<%--Site Scripts--%>
|
||||
</Scripts>
|
||||
</asp:ScriptManager>
|
||||
<script src="../Scripts/jquery-ui-i18n.min.js"></script>
|
||||
<script>
|
||||
$(function () {
|
||||
$("#tabs").tabs({
|
||||
//collapsible: true
|
||||
//heightStyle: "fill"
|
||||
});
|
||||
$.datepicker.setDefaults($.datepicker.regional["it"]);
|
||||
$(".datepicker").datepicker({
|
||||
//showOtherMonths: true,
|
||||
//selectOtherMonths: true,
|
||||
showButtonPanel: true,
|
||||
changeMonth: true,
|
||||
changeYear: true,
|
||||
dateFormat: "dd-mm-yy"
|
||||
});
|
||||
$(function () {
|
||||
$("#dialog-modal").dialog({
|
||||
//height: 140,
|
||||
autoOpen: false,
|
||||
//modal: true
|
||||
});
|
||||
});
|
||||
$(".openDiag").click(function () {
|
||||
var dlg = $("#dialog-modal").dialog("open");
|
||||
dlg.parent().appendTo(jQuery("form:first"));
|
||||
});
|
||||
});
|
||||
<form runat="server">
|
||||
<asp:ScriptManager runat="server">
|
||||
<Scripts>
|
||||
<%--Framework Scripts--%>
|
||||
<asp:ScriptReference Name="MsAjaxBundle" />
|
||||
<asp:ScriptReference Name="jquery" />
|
||||
<asp:ScriptReference Name="jquery.ui.combined" />
|
||||
<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
|
||||
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
|
||||
<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
|
||||
<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
|
||||
<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
|
||||
<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
|
||||
<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
|
||||
<asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
|
||||
<asp:ScriptReference Name="WebFormsBundle" />
|
||||
<%--Site Scripts--%>
|
||||
</Scripts>
|
||||
</asp:ScriptManager>
|
||||
<script src="../Scripts/jquery-ui-i18n.min.js"></script>
|
||||
<script>
|
||||
$(function () {
|
||||
$("#tabs").tabs({
|
||||
//collapsible: true
|
||||
//heightStyle: "fill"
|
||||
});
|
||||
$.datepicker.setDefaults($.datepicker.regional["it"]);
|
||||
$(".datepicker").datepicker({
|
||||
//showOtherMonths: true,
|
||||
//selectOtherMonths: true,
|
||||
showButtonPanel: true,
|
||||
changeMonth: true,
|
||||
changeYear: true,
|
||||
dateFormat: "dd-mm-yy"
|
||||
});
|
||||
$(function () {
|
||||
$("#dialog-modal").dialog({
|
||||
//height: 140,
|
||||
autoOpen: false,
|
||||
//modal: true
|
||||
});
|
||||
});
|
||||
$(".openDiag").click(function () {
|
||||
var dlg = $("#dialog-modal").dialog("open");
|
||||
dlg.parent().appendTo(jQuery("form:first"));
|
||||
});
|
||||
});
|
||||
|
||||
// oggetto da legare all'update parziale ajax x sistemare btns & co
|
||||
var prm = Sys.WebForms.PageRequestManager.getInstance();
|
||||
prm.add_endRequest(function () {
|
||||
// re-bind your jQuery events here
|
||||
$(function () {
|
||||
$("#tabs").tabs({
|
||||
//collapsible: true
|
||||
//heightStyle: "fill"
|
||||
});
|
||||
$.datepicker.setDefaults($.datepicker.regional["it"]);
|
||||
$(".datepicker").datepicker({
|
||||
//showOtherMonths: true,
|
||||
//selectOtherMonths: true,
|
||||
showButtonPanel: true,
|
||||
changeMonth: true,
|
||||
changeYear: true,
|
||||
dateFormat: "dd-mm-yy"
|
||||
});
|
||||
});
|
||||
$(function () {
|
||||
$("#dialog-modal").dialog({
|
||||
//height: 140,
|
||||
autoOpen: false,
|
||||
//modal: true
|
||||
});
|
||||
});
|
||||
$(".openDiag").click(function () {
|
||||
var dlg = $("#dialog-modal").dialog("open");
|
||||
dlg.parent().appendTo(jQuery("form:first"));
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<%--testata pagina--%>
|
||||
<header>
|
||||
<uc1:mod_testata runat="server" ID="mod_testata" />
|
||||
</header>
|
||||
<%--corpo pagina--%>
|
||||
<div id="body">
|
||||
<asp:ContentPlaceHolder runat="server" ID="FeaturedContent" />
|
||||
<section class="content-wrapper main-content clear-fix">
|
||||
<asp:UpdatePanel ID="upProgetti" runat="server">
|
||||
<ContentTemplate>
|
||||
<asp:ContentPlaceHolder runat="server" ID="MainContent" />
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
|
||||
</section>
|
||||
// oggetto da legare all'update parziale ajax x sistemare btns & co
|
||||
var prm = Sys.WebForms.PageRequestManager.getInstance();
|
||||
prm.add_endRequest(function () {
|
||||
// re-bind your jQuery events here
|
||||
$(function () {
|
||||
$("#tabs").tabs({
|
||||
//collapsible: true
|
||||
//heightStyle: "fill"
|
||||
});
|
||||
$.datepicker.setDefaults($.datepicker.regional["it"]);
|
||||
$(".datepicker").datepicker({
|
||||
//showOtherMonths: true,
|
||||
//selectOtherMonths: true,
|
||||
showButtonPanel: true,
|
||||
changeMonth: true,
|
||||
changeYear: true,
|
||||
dateFormat: "dd-mm-yy"
|
||||
});
|
||||
});
|
||||
$(function () {
|
||||
$("#dialog-modal").dialog({
|
||||
//height: 140,
|
||||
autoOpen: false,
|
||||
//modal: true
|
||||
});
|
||||
});
|
||||
$(".openDiag").click(function () {
|
||||
var dlg = $("#dialog-modal").dialog("open");
|
||||
dlg.parent().appendTo(jQuery("form:first"));
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<%--testata pagina--%>
|
||||
<header>
|
||||
<uc1:mod_testata runat="server" ID="mod_testata" />
|
||||
</header>
|
||||
<%--corpo pagina--%>
|
||||
<div id="body">
|
||||
<asp:ContentPlaceHolder runat="server" ID="FeaturedContent" />
|
||||
<section class="content-wrapper main-content clear-fix">
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<asp:UpdatePanel ID="upProgetti" runat="server">
|
||||
<ContentTemplate>
|
||||
<asp:ContentPlaceHolder runat="server" ID="MainContent" />
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
</div>
|
||||
</div>
|
||||
<%--footer pagina--%>
|
||||
<footer>
|
||||
<uc2:mod_menuBottomFullpage ID="mod_menuBottomFullpage1" runat="server" />
|
||||
</footer>
|
||||
</section>
|
||||
</div>
|
||||
<%--footer pagina--%>
|
||||
<footer>
|
||||
<uc2:mod_menuBottomFullpage ID="mod_menuBottomFullpage1" runat="server" />
|
||||
</footer>
|
||||
|
||||
</form>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<div class="divSx">
|
||||
<asp:FormView ID="frmView" runat="server" DataKeyNames="idxFase" DataSourceID="ods">
|
||||
<ItemTemplate>
|
||||
<div class="fontPiccolo placardGrigio ui-corner-all shadowBox" style="white-space: nowrap; height: 1.4em; min-width: 402px;">
|
||||
<div class="fontPiccolo placardGrigio ui-corner-all shadowBox" style="white-space: nowrap; height: 2.4em; min-width: 402px;">
|
||||
<div class="divSx">
|
||||
<asp:ImageButton ID="imgGoProj" runat="server" CausesValidation="False" CommandArgument="goProj" CommandName="Select"
|
||||
ToolTip="Dati Progetto" ImageUrl="../images/arrowLeft_s.png" OnClick="imgGoProj_Click" />
|
||||
@@ -141,7 +141,7 @@
|
||||
</div>
|
||||
</ItemTemplate>
|
||||
<EditItemTemplate>
|
||||
<div class="fontPiccolo placardGrigio ui-corner-all shadowBox" style="white-space: nowrap; height: 1.4em; min-width: 402px;">
|
||||
<div class="fontPiccolo placardGrigio ui-corner-all shadowBox" style="white-space: nowrap; height: 2.4em; min-width: 402px;">
|
||||
<div class="divSx">
|
||||
<asp:ImageButton ID="imgGoProj" runat="server" CausesValidation="False" CommandArgument="goProj" CommandName="Select"
|
||||
ToolTip="Dati Progetto" ImageUrl="../images/arrowLeft_s.png" OnClick="imgGoProj_Click" />
|
||||
|
||||
+23
-23
@@ -1,10 +1,10 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// <generato automaticamente>
|
||||
// Codice generato da uno strumento.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
|
||||
// il codice viene rigenerato.
|
||||
// </generato automaticamente>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace PROJ_ETS.WebUserControls {
|
||||
@@ -13,56 +13,56 @@ namespace PROJ_ETS.WebUserControls {
|
||||
public partial class mod_datiComm {
|
||||
|
||||
/// <summary>
|
||||
/// frmView control.
|
||||
/// Controllo frmView.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.FormView frmView;
|
||||
|
||||
/// <summary>
|
||||
/// ods control.
|
||||
/// Controllo ods.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource ods;
|
||||
|
||||
/// <summary>
|
||||
/// mod_navDettComm1 control.
|
||||
/// Controllo mod_navDettComm1.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PROJ_ETS.WebUserControls.mod_navDettComm mod_navDettComm1;
|
||||
|
||||
/// <summary>
|
||||
/// btnEmailCC control.
|
||||
/// Controllo btnEmailCC.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Button btnEmailCC;
|
||||
|
||||
/// <summary>
|
||||
/// lblEmailCC control.
|
||||
/// Controllo lblEmailCC.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblEmailCC;
|
||||
|
||||
/// <summary>
|
||||
/// odsCC control.
|
||||
/// Controllo odsCC.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource odsCC;
|
||||
}
|
||||
|
||||
@@ -1,33 +1,35 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_filtroComm.ascx.cs" Inherits="PROJ_ETS.WebUserControls.mod_filtroComm" %>
|
||||
<%@ Register Src="mod_autocomplete.ascx" TagName="mod_autocomplete" TagPrefix="uc1" %>
|
||||
|
||||
<div class="filtro_1 fontPiccolo ui-corner-all shadowBox" style="white-space: nowrap; height: 38px; padding: 4px;">
|
||||
<div class="filtro_1 fontPiccolo ui-corner-all shadowBox row" style="white-space: nowrap; height: 38px; padding: 4px;">
|
||||
<div class="col-xs-12">
|
||||
<asp:Panel runat="server" ID="pnlCli">
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 3px; margin-right: 4px; height: 32px;">
|
||||
<uc1:mod_autocomplete ID="filtroCli" runat="server" minCharAutocomplete="2" contextKey="c" labelRicerca="[C]liente" textEmWidht="15" showKey="false" ServicePath="Services/WS_data.asmx/Clienti" />
|
||||
</div>
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 0.3em; margin-right: 0.4em; height: 32px;">
|
||||
<uc1:mod_autocomplete ID="filtroCli" runat="server" minCharAutocomplete="2" contextKey="c" labelRicerca="[C]liente" textEmWidht="15" showKey="false" ServicePath="Services/WS_data.asmx/Clienti" />
|
||||
</div>
|
||||
</asp:Panel>
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 3px; margin-right: 4px; height: 32px;">
|
||||
<asp:CheckBox ID="chkShowAttivi" runat="server" Text="Solo [A]ttivi" OnCheckedChanged="chkShowAttivi_CheckedChanged"
|
||||
AutoPostBack="True" AccessKey="a" TextAlign="Left" Checked="true" />
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 0.3em; margin-right: 0.4em; height: 32px;">
|
||||
<asp:CheckBox ID="chkShowAttivi" runat="server" Text="Solo [A]ttivi" OnCheckedChanged="chkShowAttivi_CheckedChanged"
|
||||
AutoPostBack="True" AccessKey="a" TextAlign="Left" Checked="true" />
|
||||
</div>
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 3px; margin-right: 4px; height: 32px;">
|
||||
<asp:Label runat="server" ID="lblProj" Text="Progetto" AssociatedControlID="ddlProgetti" Font-Size="0.8em" />
|
||||
<asp:DropDownList ID="ddlProgetti" runat="server" DataSourceID="OdsProgetti" DataTextField="label" DataValueField="value" Font-Size="7pt" AutoPostBack="True" OnSelectedIndexChanged="ddlProgetti_SelectedIndexChanged" />
|
||||
<asp:ObjectDataSource ID="OdsProgetti" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio" TypeName="ETS_Data.DS_utilsProjEtsTableAdapters.v_selProgettiTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter SessionField="idxCli_sel" Name="conditio" Type="String" />
|
||||
<asp:SessionParameter SessionField="showPrjAttivi" DefaultValue="true" Name="soloAttivi" Type="Boolean" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 0.3em; margin-right: 0.4em; height: 32px;">
|
||||
<asp:Label runat="server" ID="lblProj" Text="Progetto" AssociatedControlID="ddlProgetti" Font-Size="0.8em" />
|
||||
<asp:DropDownList ID="ddlProgetti" runat="server" DataSourceID="OdsProgetti" DataTextField="label" DataValueField="value" Font-Size="7pt" AutoPostBack="True" OnSelectedIndexChanged="ddlProgetti_SelectedIndexChanged" Width="30em" />
|
||||
<asp:ObjectDataSource ID="OdsProgetti" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio" TypeName="ETS_Data.DS_utilsProjEtsTableAdapters.v_selProgettiTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter SessionField="idxCli_sel" Name="conditio" Type="String" />
|
||||
<asp:SessionParameter SessionField="showPrjAttivi" DefaultValue="true" Name="soloAttivi" Type="Boolean" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
</div>
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 3px; margin-right: 4px; height: 32px;">
|
||||
<asp:Label runat="server" ID="lblComm" Text="Commessa" AssociatedControlID="ddlCommesse" Font-Size="0.8em" />
|
||||
<asp:DropDownList ID="ddlCommesse" runat="server" DataSourceID="OdsCommesse" DataTextField="label" DataValueField="value" Font-Size="7pt" AutoPostBack="True" OnSelectedIndexChanged="ddlCommesse_SelectedIndexChanged" />
|
||||
<asp:ObjectDataSource ID="OdsCommesse" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio" TypeName="ETS_Data.DS_utilsProjEtsTableAdapters.v_selCommesseTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter SessionField="idxProgetto_sel" Name="conditio" Type="String" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<div class="divSx filtro_2 ui-corner-all" style="padding: 0.3em; margin-right: 0.4em; height: 32px;">
|
||||
<asp:Label runat="server" ID="lblComm" Text="Commessa" AssociatedControlID="ddlCommesse" Font-Size="0.8em" />
|
||||
<asp:DropDownList ID="ddlCommesse" runat="server" DataSourceID="OdsCommesse" DataTextField="label" DataValueField="value" Font-Size="7pt" AutoPostBack="True" OnSelectedIndexChanged="ddlCommesse_SelectedIndexChanged" Width="90em" />
|
||||
<asp:ObjectDataSource ID="OdsCommesse" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio" TypeName="ETS_Data.DS_utilsProjEtsTableAdapters.v_selCommesseTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter SessionField="idxProgetto_sel" Name="conditio" Type="String" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
+32
-32
@@ -1,10 +1,10 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// <generato automaticamente>
|
||||
// Codice generato da uno strumento.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
|
||||
// il codice viene rigenerato.
|
||||
// </generato automaticamente>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace PROJ_ETS.WebUserControls {
|
||||
@@ -13,83 +13,83 @@ namespace PROJ_ETS.WebUserControls {
|
||||
public partial class mod_filtroComm {
|
||||
|
||||
/// <summary>
|
||||
/// pnlCli control.
|
||||
/// Controllo pnlCli.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Panel pnlCli;
|
||||
|
||||
/// <summary>
|
||||
/// filtroCli control.
|
||||
/// Controllo filtroCli.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::PROJ_ETS.WebUserControls.mod_autocomplete filtroCli;
|
||||
|
||||
/// <summary>
|
||||
/// chkShowAttivi control.
|
||||
/// Controllo chkShowAttivi.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.CheckBox chkShowAttivi;
|
||||
|
||||
/// <summary>
|
||||
/// lblProj control.
|
||||
/// Controllo lblProj.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblProj;
|
||||
|
||||
/// <summary>
|
||||
/// ddlProgetti control.
|
||||
/// Controllo ddlProgetti.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.DropDownList ddlProgetti;
|
||||
|
||||
/// <summary>
|
||||
/// OdsProgetti control.
|
||||
/// Controllo OdsProgetti.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource OdsProgetti;
|
||||
|
||||
/// <summary>
|
||||
/// lblComm control.
|
||||
/// Controllo lblComm.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblComm;
|
||||
|
||||
/// <summary>
|
||||
/// ddlCommesse control.
|
||||
/// Controllo ddlCommesse.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.DropDownList ddlCommesse;
|
||||
|
||||
/// <summary>
|
||||
/// OdsCommesse control.
|
||||
/// Controllo OdsCommesse.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource OdsCommesse;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_menuProj.ascx.cs" Inherits="PROJ_ETS.WebUserControls.mod_menuProj" %>
|
||||
<asp:Menu ID="MenuNavPrj" runat="server" DataSourceID="NavProgetti" Orientation="Horizontal" RenderingMode="List" Width="100%">
|
||||
<StaticMenuItemStyle VerticalPadding="0.5em" HorizontalPadding="0.6em" CssClass="menuNav" Font-Size="1em" Width="120px" Font-Bold="true" />
|
||||
</asp:Menu>
|
||||
<asp:SiteMapDataSource ID="NavProgetti" runat="server" SiteMapProvider="Progetti" ShowStartingNode="false" />
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12" style="margin:0 0.5em;">
|
||||
<asp:Menu ID="MenuNavPrj" runat="server" DataSourceID="NavProgetti" Orientation="Horizontal" RenderingMode="List" Width="100%">
|
||||
<StaticMenuItemStyle VerticalPadding="0.5em" HorizontalPadding="0.6em" CssClass="menuNav" Font-Size="1em" Width="120px" Font-Bold="true" />
|
||||
</asp:Menu>
|
||||
<asp:SiteMapDataSource ID="NavProgetti" runat="server" SiteMapProvider="Progetti" ShowStartingNode="false" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,47 +1,49 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_testata.ascx.cs" Inherits="PROJ_ETS.WebUserControls.mod_testata" %>
|
||||
|
||||
<div class="areaTitolo row">
|
||||
<div class="col-xs-12">
|
||||
<div class="float-left fontPiccolo" style="padding: 6px 0px 6px 4px;">
|
||||
<asp:Label runat="server" ID="lblUser" />
|
||||
<br />
|
||||
<asp:Label runat="server" ID="lblPostazione" />
|
||||
<asp:Label runat="server" ID="lblUser" />
|
||||
<br />
|
||||
<asp:Label runat="server" ID="lblPostazione" />
|
||||
</div>
|
||||
<div class="float-left fontPiccolo" style="padding: 6px 0px 6px 4px;">
|
||||
<asp:UpdatePanel ID="updPnlGears" runat="server">
|
||||
<ContentTemplate>
|
||||
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="5" DynamicLayout="false">
|
||||
<ProgressTemplate>
|
||||
<div id="progress_back">
|
||||
</div>
|
||||
<div id="progress_top">
|
||||
<i class="fa fa-cog fa-spin fa-2x"></i> <i class="fa fa-cog fa-spin fa-2x"></i> <i class="fa fa-cog fa-spin fa-2x"></i>
|
||||
</div>
|
||||
</ProgressTemplate>
|
||||
</asp:UpdateProgress>
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
<asp:UpdatePanel ID="updPnlGears" runat="server">
|
||||
<ContentTemplate>
|
||||
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="5" DynamicLayout="false">
|
||||
<ProgressTemplate>
|
||||
<div id="progress_back">
|
||||
</div>
|
||||
<div id="progress_top">
|
||||
<i class="fa fa-cog fa-spin fa-2x"></i> <i class="fa fa-cog fa-spin fa-2x"></i> <i class="fa fa-cog fa-spin fa-2x"></i>
|
||||
</div>
|
||||
</ProgressTemplate>
|
||||
</asp:UpdateProgress>
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
</div>
|
||||
<div class="float-right" style="padding: 2px 10px 2px 0px;">
|
||||
<nav>
|
||||
<ul id="menu">
|
||||
<li><a href="Menu" title="Home">
|
||||
<asp:Image runat="server" ID="Image1" ImageUrl="~/images/home.png" Width="28px" Height="28px" AlternateText="Home" /></a></li>
|
||||
<li><a href="Commesse" title="Commesse">
|
||||
<asp:Image runat="server" ID="Image2" ImageUrl="~/images/progetto_white.png" Width="28px" Height="28px" AlternateText="Commesse" /></a></li>
|
||||
<li><a href="Bazaar" title="Bazaar">
|
||||
<asp:Image runat="server" ID="Image3" ImageUrl="~/images/bazaar_white.png" Width="28px" Height="28px" AlternateText="Bazaar" /></a></li>
|
||||
<%--<li><a href="Admin"title="Admin"><asp:Image runat="server" ID="Image4" ImageUrl="~/images/tools_white.png" Width="28px" Height="28px" AlternateText="Progetti" /></a>
|
||||
<nav>
|
||||
<ul id="menu">
|
||||
<li><a href="Menu" title="Home">
|
||||
<asp:Image runat="server" ID="Image1" ImageUrl="~/images/home.png" Width="28px" Height="28px" AlternateText="Home" /></a></li>
|
||||
<li><a href="Commesse" title="Commesse">
|
||||
<asp:Image runat="server" ID="Image2" ImageUrl="~/images/progetto_white.png" Width="28px" Height="28px" AlternateText="Commesse" /></a></li>
|
||||
<li><a href="Bazaar" title="Bazaar">
|
||||
<asp:Image runat="server" ID="Image3" ImageUrl="~/images/bazaar_white.png" Width="28px" Height="28px" AlternateText="Bazaar" /></a></li>
|
||||
<%--<li><a href="Admin"title="Admin"><asp:Image runat="server" ID="Image4" ImageUrl="~/images/tools_white.png" Width="28px" Height="28px" AlternateText="Progetti" /></a>
|
||||
</li>--%>
|
||||
<li><a href="help/index.html" title="Help" target="_blank">
|
||||
<asp:Image runat="server" ID="Image5" ImageUrl="~/images/help_white.png" Width="28px" Height="28px" AlternateText="Progetti" /></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<li><a href="help/index.html" title="Help" target="_blank">
|
||||
<asp:Image runat="server" ID="Image5" ImageUrl="~/images/help_white.png" Width="28px" Height="28px" AlternateText="Progetti" /></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="divCenter">
|
||||
<p class="site-title">
|
||||
<b>
|
||||
<asp:LinkButton ID="btnUpdate" runat="server" OnClick="btnUpdate_Click" Text="PROJ-ETS" ToolTip="Update" />
|
||||
</b>
|
||||
</p>
|
||||
<p class="site-title">
|
||||
<b>
|
||||
<asp:LinkButton ID="btnUpdate" runat="server" OnClick="btnUpdate_Click" Text="PROJ-ETS" ToolTip="Update" />
|
||||
</b>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user