AyCode.Blazor/AyCode.Blazor.Components/Components/Grids
Loretta d164a99ed9 Fix: TagBox reloads on in-place Data refill
Improved MgGridFilterPanelTagBox<TData, TValue> to detect in-place Data collection refills and trigger DevExpress editor Reload(), ensuring tags resolve when the collection is updated without changing its reference. Updated MGGRID_PARAMETERS.md to document this behavior and clarify why Reload() is needed for in-place fills.
2026-07-17 05:51:31 +02:00
..
GridEditMode.cs
MgGridBase.cs Refactor grid filter panel system for clarity/extensibility 2026-07-17 05:34:01 +02:00
MgGridDataColumn.cs InfoPanel: custom edit templates & null edit model fix 2026-07-12 08:36:20 +02:00
MgGridFilterPanelTagBox.cs Fix: TagBox reloads on in-place Data refill 2026-07-17 05:51:31 +02:00
MgGridHelper.cs
MgGridInfoPanel.razor InfoPanel: custom edit templates & null edit model fix 2026-07-12 08:36:20 +02:00
MgGridInfoPanel.razor.cs EKÁER grid: status enum fix, batch create, UI/UX, DB guard 2026-06-11 08:52:09 +02:00
MgGridInfoPanel.razor.css
MgGridInfoPanelHelper.cs
MgGridSignalRDataSource.cs Refactor: remove Server DLLs, unify SignalR references 2026-06-08 16:53:27 +02:00
MgGridToolbarBase.cs
MgGridToolbarHelper.cs
MgGridToolbarTemplate.razor Add quick-filter panel slot to MgGridBase 2026-07-16 06:28:55 +02:00
MgGridWithInfoPanel.razor
README.md Refactor MgGridBase filter panel & unify filter criteria 2026-07-16 15:01:37 +02:00

README.md

Grids

Core grid system built on DevExpress DxGrid. For the full technical reference see AyCode.Blazor.Components/docs/MGGRID/README.md.

Key Files

  • MgGridBase.csMgGridBase<TSignalRDataSource, TDataItem, TId, TLoggerClient>, the main abstract grid component. Extends DxGrid with SignalR CRUD, layout persistence, master-detail hierarchy, edit state tracking, fullscreen toggle, and a quick-filter FilterPanel slot (renders MgTagBox controls below the toolbar in a styled .mg-grid-filter-panel container; toolbar Show/Hide toggle).
  • MgGridWithInfoPanel.razorDxSplitter wrapper: grid (left) + InfoPanel (right), fullscreen overlay, splitter size persistence.
  • MgGridToolbarBase.cs — Extends DxToolbar with Grid, RefreshClick, and ShowOnlyIcon parameters.
  • MgGridToolbarTemplate.razor — Full toolbar template: New/Edit/Delete/Save/Cancel, row navigation, layout menu (Load/Save/Reset), column chooser, export, reload, filter-panel toggle (visible only when the grid has a FilterPanel), fullscreen. Extensible via ToolbarItemsExtended.
  • MgGridDataColumn.cs — Extends DxGridDataColumn with InfoPanel parameters (ShowInInfoPanel, InfoPanelOrder, InfoPanelDisplayFormat) and UrlLink template with {Property} placeholder substitution via compiled accessors.
  • MgGridInfoPanel.razor / .razor.csMgGridInfoPanel implementing IInfoPanelBase. Responsive column layout (1-4 columns with breakpoints), edit/view mode with typed editors, template system, sticky positioning via JS interop.
  • MgGridSignalRDataSource.csGridCustomDataSource wrapping AcSignalRDataSource. Local cache for seen filter criteria, background refresh.
  • GridEditMode.csMgGridEditState enum: None, New, Edit.
  • MgGridHelper.cs, MgGridToolbarHelper.cs, MgGridInfoPanelHelper.cs — Placeholder helpers (empty).