@if (SelectedCellDetail is null) { Choose a cell to see its roll band, severity, and readable result without leaving the grid. } else { var cell = SelectedCellDetail; Roll band @cell.RollBand Severity @cell.ColumnLabel @if (!string.IsNullOrWhiteSpace(cell.GroupLabel)) { Variant @cell.GroupLabel } Status @(cell.IsCurated ? "Curated" : "Needs Curation") @if (!cell.IsCurated) { Open curation } Open editor } @code { [Parameter] public CriticalTableCellDetail? SelectedCellDetail { get; set; } [Parameter] public EventCallback OnEdit { get; set; } [Parameter] public EventCallback OnCurate { get; set; } }
Choose a cell to see its roll band, severity, and readable result without leaving the grid.
Roll band
Severity
Variant
Status