DataInbox Detail
This commit is contained in:
@@ -33,6 +33,7 @@
|
||||
Hover="true"
|
||||
Loading="isLoading"
|
||||
LoadingProgressColor="Color.Info"
|
||||
OnRowClick="@((TableRowClickEventArgs<DataInboxDto> args) => OnRowClick(args.Item))"
|
||||
T="DataInboxDto"
|
||||
Style="cursor: pointer;">
|
||||
<HeaderContent>
|
||||
|
||||
@@ -57,4 +57,9 @@ public partial class DataInboxListComponent : ComponentBase
|
||||
filterRequest = new DataInboxFilterRequest();
|
||||
await LoadDataInbox();
|
||||
}
|
||||
|
||||
private void OnRowClick(DataInboxDto dataInboxItem)
|
||||
{
|
||||
NavigationManager.NavigateTo($"/datainbox/{dataInboxItem.Id}");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user