Files
mapo-core/MP-TAB3/Components/TechSheet_ST_Detail.razor
2023-12-18 11:36:24 +01:00

16 lines
308 B
Plaintext

@if (showWarning)
{
<div class="text-danger text-center fs-3">@txtWarning</div>
}
@if (ListRecord.Count == 0)
{
<div class="alert alert-warning">NO record found</div>
}
else
{
foreach (var item in ListRecord)
{
<TechSheet_ST_ObjView CurrRec="@item"></TechSheet_ST_ObjView>
}
}