fix comportamento buttons...

This commit is contained in:
Samuele E. Locatelli
2017-03-30 16:50:23 +02:00
parent a8badfdff1
commit 557c5a692e
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -27,7 +27,7 @@
<div class="ui-grid-a" style="font-size: 0.8em;">
<asp:Button runat="server" ID="btnNew" Text="Nuovo" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-plus" OnClick="btnNew_Click" />
<asp:TextBox runat="server" type="search" name="password" ID="txtSearch" value="" placeholder="Ricerca Nominativo" AutoPostBack="true" />
<asp:GridView ID="grView" runat="server" DataSourceID="ods" AutoGenerateColumns="False" DataKeyNames="IdxPaziente" CellPadding="4" ForeColor="#333333" GridLines="None" Width="100%" AllowPaging="True" OnSelectedIndexChanged="grView_SelectedIndexChanged" OnRowCommand="grView_RowCommand" PageSize="20">
<asp:GridView ID="grView" runat="server" DataSourceID="ods" AutoGenerateColumns="False" DataKeyNames="IdxPaziente" CellPadding="4" ForeColor="#333333" GridLines="None" Width="100%" AllowPaging="True" OnSelectedIndexChanged="grView_SelectedIndexChanged" OnRowCommand="grView_RowCommand" PageSize="20" AllowSorting="false">
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
+2
View File
@@ -104,6 +104,7 @@ namespace ScheMe
// ora procedo!
if (currFiltUno != "")
{
ddlFiltUno.DataBind();
ddlFiltUno.SelectedValue = currFiltUno;
ddlFiltUno.Enabled = true;
}
@@ -169,6 +170,7 @@ namespace ScheMe
// salvo i gruppi selezionati...
DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltUno.SelectedValue);
DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltDue.SelectedValue);
btnSave.Enabled = false;
}
}
}