Skip to main content
All docs
V25.1
  • DxAccordionItem.NavigateUrl Property

    Specifies the item’s location to navigate.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue("")]
    [Parameter]
    public string NavigateUrl { get; set; }

    Property Value

    Type Default Description
    String String.Empty

    The URL where the browser navigates.

    Remarks

    Use the NavigateUrl property to specify a URL where the web browser navigates when the item is clicked. To specify where the browser should open the URL, use the Target property.

    The following example uses the NavigateUrl property:

    <DxAccordion>
        <Items>
            <DxAccordionItem Text="Grid" NavigateUrl="https://demos.devexpress.com/blazor/Grid" />
            <DxAccordionItem Text="Navigation and Layout" NavigateUrl="https://demos.devexpress.com/blazor/Navigation" />
            <DxAccordionItem Text="Data Editors" NavigateUrl="https://demos.devexpress.com/blazor/Editors" />
            <DxAccordionItem Text="Scheduler" NavigateUrl="https://demos.devexpress.com/blazor/Scheduler" />
        </Items>
    </DxAccordion>
    
    See Also