Introduce BandLayoutService and shared models to manage grid band layouts across components. Refactor CatalogsGrid and MassDataGrid to use the new service, removing duplicated layout logic. Update _Imports.razor and register the service in Program.cs for improved maintainability and code reuse.
20 lines
752 B
Plaintext
20 lines
752 B
Plaintext
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using System.Text.Json
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Rendering
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
@using Microsoft.JSInterop
|
|
@using Microsoft.AspNetCore.SignalR.Client
|
|
@using DbFirst.BlazorWebApp
|
|
@using DbFirst.BlazorWebApp.Components
|
|
@using DbFirst.BlazorWebApp.Models
|
|
@using DbFirst.BlazorWebApp.Models.Grid
|
|
@using DbFirst.BlazorWebApp.Services
|
|
@using DevExpress.Blazor
|
|
@using DevExpress.DashboardBlazor
|
|
@using DevExpress.DashboardWeb
|
|
@using DevExpress.Data.Filtering |