+ @if (isLoading || ListRecords == null)
+ {
+
+ }
+ else if (totalCount == 0)
+ {
+
Nessun record trovato
+ }
+ else
+ {
+
+
+
+ |
+
+ |
+ @if (selRecord == null)
+ {
+ Ord. |
+ Descrizione |
+ Fasi |
+
+
+ |
+ }
+ else
+ {
+ Descrizione |
+ }
+
+
+
+ @foreach (var item in ListRecords)
+ {
+ string cssBtnUp = editRecord == null && item.Ordinal > 1 ? "btn-outline-primary" : "btn-outline-secondary opacity-50 disabled";
+ string cssBtnDown = editRecord == null && item.Ordinal < totalCount ? "btn-outline-primary" : "btn-outline-secondary opacity-50 disabled";
+
+
+ |
+
+
+ |
+ @if (selRecord == null)
+ {
+
+
+
+ @item.Ordinal
+
+ |
+ @item.Description |
+ @item.NumChild |
+
+ @if (item.Lock || item.NumChild > 0)
+ {
+
+ }
+ else
+ {
+
+ }
+ |
+ }
+ else
+ {
+ @item.Description |
+ }
+
+ }
+
+
+ }
+