FIX GRAFICO!!!
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user