30 lines
762 B
C#
30 lines
762 B
C#
using Microsoft.AspNetCore.Components;
|
|
using AyCode.Entities.LogItems;
|
|
using TIAM.Entities.Users;
|
|
using TIAM.Services;
|
|
using TIAM.Entities.Transfers;
|
|
using TIAMWebApp.Shared.Application.Models.ClientSide.UI;
|
|
|
|
namespace TIAMSharedUI.Shared.Components.Grids;
|
|
|
|
public class LogViewerGrid : TiamGrid<LogitemViewerModel>
|
|
{
|
|
public LogViewerGrid() : base()
|
|
{
|
|
GetAllMessageTag = SignalRTags.GetAllLogItems;
|
|
}
|
|
|
|
protected override Task SetParametersAsyncCore(ParameterView parameters)
|
|
{
|
|
if (!IsFirstInitializeParameters)
|
|
{
|
|
//ShowFilterRow = true;
|
|
//ShowGroupPanel = true;
|
|
//AllowSort = false;
|
|
|
|
//etc...
|
|
}
|
|
|
|
return base.SetParametersAsyncCore(parameters);
|
|
}
|
|
} |