Enum ContentLoad
Enum for the different options for displaying tab content.
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum ContentLoad
Fields
| Name | Description |
|---|---|
| Demand | Only the content of the selected tab is loaded initially. The content of tabs that have been loaded once will be maintained in the DOM. |
| Dynamic | Only the content of the selected tab is loaded and available in the DOM, and it will be replaced with the corresponding content if the tab is selected dynamically. |
| Init | The content of all tabs is rendered on the initial load and maintained in the DOM. |