Testo in timbr list parametrico

This commit is contained in:
Samuele Locatelli
2023-01-16 18:39:05 +01:00
parent 1a324a1cd9
commit 18b4c113d1
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
@using GPW.CORE.Smart.Data
<table class="table table-sm table-responsive-md text-light">
<table class="table table-sm table-responsive-md @TextCss">
<thead>
<tr>
@if (EnableAdmin)
@@ -15,6 +15,10 @@ namespace GPW.CORE.Smart.Components
[Parameter]
public bool EnableEdit { get; set; } = false;
[Parameter]
public string TextCss { get; set; } = "text-dark";
private bool isLoading { get; set; } = false;
[Parameter]
+1 -1
View File
@@ -11,5 +11,5 @@ else if (ListTimbRich.Count == 0)
}
else
{
<TimbList ListTimb="@ListTimbRich" EnableAdmin="false" EnableEdit="true" ReqUpdate="DoUpdate"></TimbList>
<TimbList ListTimb="@ListTimbRich" EnableAdmin="false" EnableEdit="true" ReqUpdate="DoUpdate" TextCss="text-light"></TimbList>
}