Specifies the ways a RadzenPanelMenu component renders the child items of its expandable items.
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public enum PanelMenuRenderMode| Name | Description |
|---|---|
| Client | All child items are rendered up front and collapsed ones are hidden. This preserves the expand/collapse animation but keeps the entire menu in the DOM. |
| Server | Child items are rendered by Blazor only while their parent item is expanded. Collapsed branches are not rendered, which keeps the DOM small for large menus. |