fix lista buttons

This commit is contained in:
Samuele E. Locatelli
2021-01-08 17:51:54 +01:00
parent 356e33a74b
commit 0394eff271
3 changed files with 45 additions and 41 deletions
+35 -31
View File
@@ -50,42 +50,46 @@
<asp:CheckBox runat="server" ID="chkSoloAncest" Text="Solo Macrofasi" Checked="false" AutoPostBack="true" />
</div>
</div>
<div class="d-flex table-primary" runat="server" id="pnlFaseDest">
<div class="d-flex table-primary">
<div class="p-2">
<asp:Button runat="server" ID="btnEnableSposta" Text="..." OnClick="btnEnableSposta_Click" CssClass="badgeArancio ui-corner-all" />
</div>
<div class="p-2">
<uc1:mod_filtro ID="filtroCliDest" runat="server" filterChekText="allClienti" comboWidth="180" changeCheckVisible="false"
isChecked="true" filterUnchekText="selClienti" />
</div>
<div class="p-2">
<uc1:mod_filtro ID="filtroPrjDest" runat="server" filterChekText="allProgetti" comboWidth="240" changeCheckVisible="false"
changeCheckEnabled="false" isChecked="true" filterUnchekText="selProgetti" />
<asp:ObjectDataSource ID="odsProjDest" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio"
TypeName="GPW_data.DS_UtilityTableAdapters.v_selProgettiTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="filtroCliDest" DefaultValue="0" PropertyName="valore" Name="conditio" Type="String" />
<asp:Parameter DefaultValue="true" Name="soloAttivi" Type="Boolean" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
<div class="p-2">
<asp:DropDownList ID="ddlFaseDest" runat="server" DataSourceID="odsFasiDest" DataTextField="label" DataValueField="value"
Font-Size="8pt" OnDataBound="ddlFaseDest_DataBound">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsFasiDest" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio"
TypeName="GPW_data.DS_UtilityTableAdapters.v_selFasiOptTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="filtroPrjDest" DefaultValue="0" PropertyName="valoreInt" Name="conditio" Type="Int32" />
<asp:Parameter DefaultValue="false" Name="soloAttivi" Type="Boolean" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
<div class="p-2">
<asp:Button runat="server" ID="btnSpostaSel" Text="Sposta selezionati" OnClick="btnSpostaSel_Click" CssClass="badgeVerde ui-corner-all" />
<div class="p-2" runat="server" id="pnlFaseDest">
<div class="d-flex table-primary">
<div class="p-2">
<uc1:mod_filtro ID="filtroCliDest" runat="server" filterChekText="allClienti" comboWidth="180" changeCheckVisible="false"
isChecked="true" filterUnchekText="selClienti" />
</div>
<div class="p-2">
<uc1:mod_filtro ID="filtroPrjDest" runat="server" filterChekText="allProgetti" comboWidth="240" changeCheckVisible="false"
changeCheckEnabled="false" isChecked="true" filterUnchekText="selProgetti" />
<asp:ObjectDataSource ID="odsProjDest" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio"
TypeName="GPW_data.DS_UtilityTableAdapters.v_selProgettiTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="filtroCliDest" DefaultValue="0" PropertyName="valore" Name="conditio" Type="String" />
<asp:Parameter DefaultValue="true" Name="soloAttivi" Type="Boolean" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
<div class="p-2">
<asp:DropDownList ID="ddlFaseDest" runat="server" DataSourceID="odsFasiDest" DataTextField="label" DataValueField="value"
Font-Size="8pt" OnDataBound="ddlFaseDest_DataBound">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsFasiDest" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio"
TypeName="GPW_data.DS_UtilityTableAdapters.v_selFasiOptTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="filtroPrjDest" DefaultValue="0" PropertyName="valoreInt" Name="conditio" Type="Int32" />
<asp:Parameter DefaultValue="false" Name="soloAttivi" Type="Boolean" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
<div class="p-2">
<asp:Button runat="server" ID="btnSpostaSel" Text="Sposta selezionati" OnClick="btnSpostaSel_Click" CssClass="badgeVerde ui-corner-all" />
</div>
</div>
</div>
</div>
<hr />
<div class="row small">
<div class="col-12">
<asp:GridView ID="grView" runat="server" DataSourceID="odsRA" AutoGenerateColumns="False" OnRowCommand="grView_RowCommand" DataKeyNames="idxRA" OnRowDataBound="grView_RowDataBound" OnRowEditing="grView_RowEditing" OnRowUpdated="grView_RowUpdated" AllowPaging="True" OnPageIndexChanged="grView_PageIndexChanged" CssClass="table table-sm table-striped">
+9 -9
View File
@@ -113,15 +113,6 @@ namespace GPW_Admin.WebUserControls
/// </remarks>
protected global::System.Web.UI.WebControls.CheckBox chkSoloAncest;
/// <summary>
/// Controllo pnlFaseDest.
/// </summary>
/// <remarks>
/// 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.HtmlControls.HtmlGenericControl pnlFaseDest;
/// <summary>
/// Controllo btnEnableSposta.
/// </summary>
@@ -131,6 +122,15 @@ namespace GPW_Admin.WebUserControls
/// </remarks>
protected global::System.Web.UI.WebControls.Button btnEnableSposta;
/// <summary>
/// Controllo pnlFaseDest.
/// </summary>
/// <remarks>
/// 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.HtmlControls.HtmlGenericControl pnlFaseDest;
/// <summary>
/// Controllo filtroCliDest.
/// </summary>
Vendored
+1 -1
View File
@@ -10,7 +10,7 @@ pipeline {
steps {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=4136']) {
withEnv(['NEXT_BUILD_NUMBER=4137']) {
// env.versionNumber = VersionNumber(versionNumberString : '2.7.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '2.7.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'GPW'