31 lines
887 B
C#
31 lines
887 B
C#
using Microsoft.AspNetCore.Components;
|
|
using TIAM.Entities.Products;
|
|
using TIAM.Entities.Transfers;
|
|
using TIAM.Services;
|
|
|
|
namespace TIAMSharedUI.Shared.Components.Grids;
|
|
|
|
public class TransferDestinationToProductGrid : TiamGrid<TransferDestinationToProduct>
|
|
{
|
|
public TransferDestinationToProductGrid() : base()
|
|
{
|
|
GetAllMessageTag = SignalRTags.GetProductsByContextId;
|
|
AddMessageTag = SignalRTags.AddProduct;
|
|
UpdateMessageTag = SignalRTags.UpdateProduct;
|
|
RemoveMessageTag = SignalRTags.RemoveProduct;
|
|
}
|
|
|
|
protected override Task SetParametersAsyncCore(ParameterView parameters)
|
|
{
|
|
if (!IsFirstInitializeParameters)
|
|
{
|
|
//ShowFilterRow = true;
|
|
//ShowGroupPanel = true;
|
|
//AllowSort = false;
|
|
|
|
//etc...
|
|
}
|
|
|
|
return base.SetParametersAsyncCore(parameters);
|
|
}
|
|
} |