Add user-specific persistent grid/band layouts support

Implemented user-customizable, persistent grid and band layouts for CatalogsGrid and MassDataGrid. Added backend API, database entity, and repository for storing layouts per user. Refactored grids to support dynamic band/column rendering, layout management UI, and per-user storage via localStorage and the new API. Registered all necessary services and updated data context. Enables flexible, user-specific grid experiences with saved layouts.
This commit is contained in:
OlgunR
2026-02-06 14:07:52 +01:00
parent 52b2cf9a5b
commit d78fd5e3d1
16 changed files with 2530 additions and 229 deletions

View File

@@ -0,0 +1,9 @@
namespace DbFirst.BlazorWasm.Models;
public class LayoutDto
{
public string LayoutType { get; set; } = string.Empty;
public string LayoutKey { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string LayoutData { get; set; } = string.Empty;
}