fix glitch comportamento...

This commit is contained in:
Samuele E. Locatelli
2017-03-13 12:44:12 +01:00
parent 886fb62f9e
commit b5b8f65503
9 changed files with 14 additions and 7 deletions
Binary file not shown.
Binary file not shown.
+2
View File
@@ -56,8 +56,10 @@ namespace CMS_SC
fixControlsPrev();
// sistemo il resto...
mod_collaudi.CodSchedaVers = CodSchedaVers;
mod_collaudi.doUpdate();
mod_collaudiPrev.Fase = FasePrev;
mod_collaudiPrev.CodSchedaVers = CodSchedaVers;
mod_collaudiPrev.doUpdate();
}
/// <summary>
+2 -2
View File
@@ -3,10 +3,10 @@
<asp:Content runat="server" ID="FeaturedContent" ContentPlaceHolderID="FeaturedContent">
<div class="row" style="margin-top: -10px;">
<div class="col-xs-6" style="color: #ee8800; padding: 10px 30px; text-align: left;">
<img src="Images/LogoCms.png?h=120&w=480" alt="CMS" class="img-responsive" />
<img src="Images/LogoCms.png" alt="CMS" class="img-responsive" height="120" width="480" />
</div>
<div class="col-xs-6" style="color: #ee8800; padding: 10px 30px;">
<img src="Images/LogoHomeDx.png?h=120&w=480" alt="" class="img-responsive pull-right" />
<img src="Images/LogoHomeDx.png" alt="" class="img-responsive pull-right" height="120" width="480" />
</div>
<div class="col-xs-12" style="color: #ABABAB; text-align: center; margin: auto; padding: 30px; float: none;">
<h1>Gestione Schede Collaudo</h1>
@@ -70,12 +70,17 @@ namespace CMS_SC.WebUserControls
get
{
string answ = "";
try
if (grView.SelectedIndex >= 0)
{
answ = string.Format("{0}.{1}.{2}", grView.SelectedDataKey["CodScheda"], grView.SelectedDataKey["Vers"], grView.SelectedDataKey["NumScheda"]);
try
{
answ = string.Format("{0}.{1}.{2}", grView.SelectedDataKey["CodScheda"], grView.SelectedDataKey["Vers"], grView.SelectedDataKey["NumScheda"]);
}
catch (Exception exc)
{
logger.lg.scriviLog(exc.ToString(), tipoLog.EXCEPTION);
}
}
catch
{ }
return answ;
}
set
+1 -1
View File
@@ -13,7 +13,7 @@
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" id="A4" runat="server" href="~/Default">
<img src="~/Images/LogoCms.png?h=70&w=160&mode=max" alt="CMS" class="img-responsive" runat="server" id="imgLogo" />
<img src="~/Images/LogoCms.png" alt="CMS" class="img-responsive" runat="server" id="imgLogo" height="70" width="160" />
</a>
<div class="subnavbar">
<div class="subnavbar-inner">
Binary file not shown.
Binary file not shown.