using Microsoft.AspNetCore.Components; using TIAM.Entities.Addresses; using TIAM.Entities.Transfers; using TIAM.Services; namespace TIAMSharedUI.Shared.Components.Grids; public class AddressGrid : TiamGrid
{ public AddressGrid() : base() { GetAllMessageTag = SignalRTags.GetAddressesByContextId; //AddMessageTag = SignalRTags.AddAddress; UpdateMessageTag = SignalRTags.UpdateAddress; //RemoveMessageTag = SignalRTags.RemoveAddress; - nem törlünk címet - J. } protected override Task SetParametersAsyncCore(ParameterView parameters) { if (!IsFirstInitializeParameters) { //ShowFilterRow = true; //ShowGroupPanel = true; //AllowSort = false; //etc... } return base.SetParametersAsyncCore(parameters); } }