Class ViewPaths
- Namespace
- Htmx.Components.Models
- Assembly
- Htmx.Components.dll
Contains the default view paths used by the Htmx Components framework. This class centralizes the management of partial view paths for different component types, allowing for easy customization of the framework's rendering behavior.
public class ViewPaths
- Inheritance
-
ViewPaths
- Inherited Members
- Extension Methods
Properties
AuthStatus
Gets or sets the view path for the authentication status component. Defaults to "Default" which shows the standard authentication status display.
public string AuthStatus { get; set; }
Property Value
DefaultNavContent
Gets or sets the view path for the default navigation content. This is used when no custom navigation content is specified.
public string DefaultNavContent { get; set; }
Property Value
Input
Gets or sets the view path for input components. Defaults to "_Input" which is the standard input rendering partial view.
public string Input { get; set; }
Property Value
NavBar
Gets or sets the view path for the navigation bar component. Defaults to "Default" which corresponds to the standard navigation bar layout.
public string NavBar { get; set; }
Property Value
Table
Gets or sets the view paths used by table components. This provides access to all table-specific partial views including cells, filters, and actions.
public TableViewPaths Table { get; set; }