33 lines
965 B
C#
33 lines
965 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.GetAllUserProductMappings;
|
|
AddMessageTag = SignalRTags.CreateUserProductMapping;
|
|
UpdateMessageTag = SignalRTags.UpdateUserProductMapping;
|
|
RemoveMessageTag = SignalRTags.DeleteUserProductMapping;
|
|
}
|
|
|
|
protected override Task SetParametersAsyncCore(ParameterView parameters)
|
|
{
|
|
if (!IsFirstInitializeParameters)
|
|
{
|
|
//ShowFilterRow = true;
|
|
//ShowGroupPanel = true;
|
|
//AllowSort = false;
|
|
|
|
//etc...
|
|
}
|
|
|
|
return base.SetParametersAsyncCore(parameters);
|
|
}
|
|
} |