[성현모] Overview Merged 추가

This commit is contained in:
SHM
2025-09-03 10:32:20 +09:00
parent 978e4faadc
commit 02f170db5f
5 changed files with 193 additions and 14 deletions

View File

@ -5,7 +5,7 @@
<RadzenDataGrid Style="height:calc(100vh - 23rem); font-size: 20px;" TItem="TDataModel" Data="@DataList" AllowPaging PageSize="100"
AllowFiltering FilterMode="FilterMode.Advanced" CellRender="@CellRender"
SelectionMode="DataGridSelectionMode.Single" @bind-Value="@SelectedRow"
CellContextMenu="@OnCellContextMenu" RowSelect="@SelectRow">
CellContextMenu="@OnCellContextMenu" RowSelect="@SelectRow" RowDoubleClick="@OnRowDoublClick">
<Columns>
@if (VisibleRowNo == true)
@ -185,4 +185,9 @@
await OnSelectRow.InvokeAsync(data);
StateHasChanged();
}
private async Task OnRowDoublClick<T>(DataGridRowMouseEventArgs<T> args)
{
}
}