Update della 275 terminalino con colori corretti
git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@285 365432ac-a1b5-4ffd-bb28-6d3099d32164
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+12
-4
@@ -336,7 +336,7 @@
|
||||
width: 95px;
|
||||
height:95px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFCCAA;
|
||||
background-color: #FFEEAA;
|
||||
font-weight:bold;
|
||||
white-space:pre;
|
||||
}
|
||||
@@ -361,15 +361,23 @@
|
||||
font-size: x-small;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.btnLogout
|
||||
{
|
||||
width: 80px;
|
||||
height:20px;
|
||||
border: solid 2px red;
|
||||
background-color: #FF9999;
|
||||
background-color: #FFAAAA;
|
||||
white-space:pre;
|
||||
font-size: x-small;
|
||||
font-weight:bold;
|
||||
}
|
||||
.btnBarcodeSmall
|
||||
{
|
||||
width: 80px;
|
||||
height:20px;
|
||||
border: solid 2px blue;
|
||||
background-color: #AAFFFF;
|
||||
white-space:pre;
|
||||
font-size: x-small;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
|
||||
@@ -77,6 +77,7 @@
|
||||
<add key="MinCharAutocomplete" value="3" />
|
||||
<add key="_fromEmail" value="GMW@steamware.net" />
|
||||
<add key="urlWebServer" value="http://localhost/GMW/" />
|
||||
<add key="showLogout" value="false"/>
|
||||
<!--Default values vari-->
|
||||
<add key="Max_X" value="850" />
|
||||
<add key="Max_Y" value="900" />
|
||||
|
||||
@@ -12,10 +12,11 @@
|
||||
<asp:Label ID="lblData" runat="server" Text="" />
|
||||
</div>
|
||||
<div id="Button">
|
||||
<asp:Button ID="btnLoginPage" runat="server" OnClick="btnLoginPage_Click" CssClass="btnLogout" />
|
||||
<asp:Button ID="btnLoginPage" runat="server" OnClick="btnLoginPage_Click" CssClass="btnLogout"
|
||||
Visible="false" />
|
||||
<asp:Button ID="btnButtonsHome" runat="server" OnClick="btnButtonsHome_Click" CssClass="btnHome" />
|
||||
</div>
|
||||
<div style="padding-top:20px; font-size:smaller;">
|
||||
<asp:Label runat="server" ID="lblRev" />
|
||||
<div style="padding-top: 20px; font-size: smaller;">
|
||||
<asp:Label runat="server" ID="lblRev" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace GMW_Term.WebUserControls
|
||||
if (_validUserInSession)
|
||||
{
|
||||
btnLoginPage.Text = "[7]-LogOut";
|
||||
btnLoginPage.Visible = true;
|
||||
btnLoginPage.Visible = memLayer.ML.confReadBool("showLogout");
|
||||
btnButtonsHome.Visible = true;
|
||||
lblData.Text = traduci("Insert Data") + "...";
|
||||
lblRev.Visible = false;
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
</asp:Panel>
|
||||
<asp:Panel runat="server" ID="pnlDetail" Visible="false">
|
||||
<div>
|
||||
<asp:Button ID="btnBarcode" runat="server" OnClick="btnBarcode_Click" CssClass="btnLogout" />
|
||||
<asp:Button ID="btnBarcode" runat="server" OnClick="btnBarcode_Click" CssClass="btnBarcodeSmall" />
|
||||
<asp:Button ID="btnCloseDet" runat="server" OnClick="btnCloseDet_Click" CssClass="btnHome" />
|
||||
</div>
|
||||
<div id="smallGridDetail" style="text-align: left; padding: 0px 0px 0px 0px;">
|
||||
|
||||
@@ -279,7 +279,7 @@ namespace GMW_Term.WebUserControls
|
||||
verificaOperatoreInSessione();
|
||||
if (_validUserInSession)
|
||||
{
|
||||
btnLoginPage.Visible = true;
|
||||
btnLoginPage.Visible = memLayer.ML.confReadBool("showLogout");
|
||||
btnButtonsHome.Visible = true;
|
||||
}
|
||||
// se non è valorizzato chiede di effettuare login...
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<asp:TextBox ID="txtRicerca" runat="server" OnTextChanged="txtRicerca_TextChanged" Height="10px" Font-Size="X-Small" />
|
||||
</div>
|
||||
<div id="Div1">
|
||||
<asp:Button ID="btnLoginPage" runat="server" OnClick="btnLoginPage_Click" CssClass="btnLogout"/>
|
||||
<asp:Button ID="btnLoginPage" runat="server" OnClick="btnLoginPage_Click" CssClass="btnLogout" Visible="false" />
|
||||
<asp:Button ID="btnButtonsHome" runat="server" OnClick="btnButtonsHome_Click" CssClass="btnHome"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -44,7 +44,7 @@ namespace GMW_Term.WebUserControls
|
||||
verificaOperatoreInSessione();
|
||||
if (_validUserInSession)
|
||||
{
|
||||
btnLoginPage.Visible = true;
|
||||
btnLoginPage.Visible = memLayer.ML.confReadBool("showLogout");
|
||||
btnButtonsHome.Visible = true;
|
||||
}
|
||||
// se non è valorizzato chiede di effettuare login...
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -26,6 +26,7 @@
|
||||
<add key="MinCharAutocomplete" value="2" />
|
||||
<add key="_fromEmail" value="GMW@steamware.net" />
|
||||
<add key="urlWebServer" value="http://localhost/GMW/" />
|
||||
<add key="showLogout" value="false"/>
|
||||
<!--Default values vari-->
|
||||
<add key="Max_X" value="850"/>
|
||||
<add key="Max_Y" value="900"/>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -331,7 +331,7 @@
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:GMW_Term"
|
||||
"ProductCode" = "8:{741088EF-E623-44C7-B74A-9F5208C1DB8E}"
|
||||
"PackageCode" = "8:{2F4F16A0-96B2-403D-B3A5-D353D83FC129}"
|
||||
"PackageCode" = "8:{DA8610A1-D048-4789-A2EE-E4AC5B4BA41E}"
|
||||
"UpgradeCode" = "8:{B348C50D-8DAD-4430-AEF0-60800C94CB78}"
|
||||
"RestartWWWService" = "11:TRUE"
|
||||
"RemovePreviousVersions" = "11:TRUE"
|
||||
|
||||
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