- Added "AI AGENT CORE PROTOCOL" to all copilot-instructions.md files: mandates [LOADED_DOCS] prefix, hard-gates tool usage, enforces no-re-read of .md files, and requires user consent for doc/code changes. - Updated CLAUDE.md to require reading copilot-instructions.md first. - Added topic-based doc separation and folder navigation rules. - Changed doc sync: agent now passively detects discrepancies and asks before updating docs. - Every code-modifying response must end with a [DOCUMENTATION CHECK] section. - Centralized measurement system and domain traps in new FruitBank.Common/docs/GLOSSARY.md; updated references in FruitBankHybridApp GLOSSARY.md. - Clarified schema and doc locations in FruitBankHybridApp README.md. - Added hybrid execution model section to AyCode.Core BINARY_FEATURES.md. - Removed unnecessary BeginUpdate/EndUpdate calls in MgGridBase.cs for layout persistence. - Removed full Toon schema from plugin SCHEMA.md to avoid duplication. |
||
|---|---|---|
| .. | ||
| GridEditMode.cs | ||
| MgGridBase.cs | ||
| MgGridDataColumn.cs | ||
| MgGridHelper.cs | ||
| MgGridInfoPanel.razor | ||
| MgGridInfoPanel.razor.cs | ||
| MgGridInfoPanel.razor.css | ||
| MgGridInfoPanelHelper.cs | ||
| MgGridSignalRDataSource.cs | ||
| MgGridToolbarBase.cs | ||
| MgGridToolbarHelper.cs | ||
| MgGridToolbarTemplate.razor | ||
| MgGridWithInfoPanel.razor | ||
| README.md | ||
README.md
Grids
Core grid system built on DevExpress DxGrid. For the full technical reference see AyCode.Blazor.Components/docs/MGGRID.md.
Key Files
MgGridBase.cs—MgGridBase<TSignalRDataSource, TDataItem, TId, TLoggerClient>, the main abstract grid component. ExtendsDxGridwith SignalR CRUD, layout persistence, master-detail hierarchy, edit state tracking, fullscreen toggle.MgGridWithInfoPanel.razor—DxSplitterwrapper: grid (left) + InfoPanel (right), fullscreen overlay, splitter size persistence.MgGridToolbarBase.cs— ExtendsDxToolbarwithGrid,RefreshClick, andShowOnlyIconparameters.MgGridToolbarTemplate.razor— Full toolbar template: New/Edit/Delete/Save/Cancel, row navigation, layout menu (Load/Save/Reset), column chooser, export, reload, fullscreen. Extensible viaToolbarItemsExtended.MgGridDataColumn.cs— ExtendsDxGridDataColumnwith InfoPanel parameters (ShowInInfoPanel,InfoPanelOrder,InfoPanelDisplayFormat) andUrlLinktemplate with{Property}placeholder substitution via compiled accessors.MgGridInfoPanel.razor/.razor.cs—MgGridInfoPanelimplementingIInfoPanelBase. Responsive column layout (1-4 columns with breakpoints), edit/view mode with typed editors, template system, sticky positioning via JS interop.MgGridSignalRDataSource.cs—GridCustomDataSourcewrappingAcSignalRDataSource. Local cache for seen filter criteria, background refresh.GridEditMode.cs—MgGridEditStateenum:None,New,Edit.MgGridHelper.cs,MgGridToolbarHelper.cs,MgGridInfoPanelHelper.cs— Placeholder helpers (empty).