FIX GRAFICO!!!

This commit is contained in:
Samuele E. Locatelli
2019-08-28 11:53:58 +02:00
parent 127b8d619b
commit b3836243fc
2 changed files with 22 additions and 10 deletions
@@ -28,12 +28,19 @@ namespace NKC_WF.WebUserControls
}
}
public string cssByPrepared(object _prepared)
public string cssByPrepared(object _prepared, object _isNext)
{
string answ = "col-6 table-secondary";
if (_prepared.ToString() != "")
string answ = "table-secondary";
if (_isNext.ToString() == "1")
{
answ = "col-6 table-success";
answ = "table-primary";
}
else
{
if (_prepared.ToString() != "")
{
answ = "table-success";
}
}
return answ;
}