Syncfusion blazor breadcrumb
Skill syncfusion/blazor-ui-components-skills/skills/syncfusion-blazor-breadcrumb
The skills guide Blazor development across all hosting models (Server, WASM, Hybrid, Auto) including data grid, chart, scheduler, rich text editor, gantt chart and more.
npx -y skills add syncfusion/blazor-ui-components-skills --skill syncfusion-blazor-breadcrumbAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Implement Syncfusion Blazor Breadcrumb (SfBreadcrumb) control for hierarchical navigation. Use this when building breadcrumb trails, auto-generating items from URLs, or managing dynamic navigation sequences. This skill covers overflow modes, item templates, icon customization, and responsive layout configurations.
SKILL.md
9.2 KB, as published. Nobody here has run it
Syncfusion Blazor Breadcrumb Component
When to Use This Skill
Use this skill when you need to:
- Build navigation breadcrumbs for single-page applications (SPAs) to show the user's current position in a hierarchy
- Auto-generate breadcrumb trails based on the current URL path
- Create custom navigation sequences with dynamic item management (add/remove items at runtime)
- Handle overflow scenarios with many breadcrumb items (collapsed, menu, wrap, scroll modes)
- Customize visual appearance with icons, images, separators, or templates
- Implement templated breadcrumb layouts using Chip components or custom renderers
- Enable/disable navigation based on business logic or user roles
The Syncfusion Blazor Breadcrumb component provides built-in URL parsing, responsive overflow handling, and templating capabilities to simplify hierarchical navigation UIs.
Component Overview
The Blazor Breadcrumb component is a navigation control that displays a hierarchy of pages or sections visited within an application.
Key Features:
- Auto-generated items from current URL path
- Manual item declaration using
BreadcrumbItemtag directive - Multiple overflow modes (Collapsed, Menu, Wrap, Scroll, Hidden, None)
- Icon and image support via
IconCssproperty - Template-based customization for items and separators
- Dynamic item management (add/remove at runtime)
- URL navigation (relative or absolute)
- Responsive design with CSS customization
Documentation and Navigation Guide
Getting Started
π Read: references/getting-started.md
- NuGet package installation (
Syncfusion.Blazor.Navigations) - Namespace imports and service registration
- Theme stylesheet and script configuration
- Basic
<SfBreadcrumb>component initialization - First render with URL-based navigation
Item Configuration
π Read: references/breadcrumb-items-configuration.md
BreadcrumbItemproperties (Text,Url,IconCss)- Declaring items using
<BreadcrumbItem>tag directive - Auto-generating items from the current page URL
- Generating items from an absolute URL using the
Urlproperty - Dynamically adding and removing items at runtime using the
Itemsproperty
Icons and Visual Elements
π Read: references/icons-and-visual-elements.md
- Adding font icons with
e-iconsCSS class - Image customization via
IconCssproperty with custom CSS classes - SVG image support for breadcrumb items
- Icon-only breadcrumb items (no text)
- Displaying icons selectively (e.g., first item only)
Navigation and Routing
π Read: references/navigation-and-routing.md
- Relative URL navigation in breadcrumb items
- Absolute URL navigation for external links
- Disabling navigation with
EnableNavigation="false" - Enabling navigation for the active (last) item with
EnableActiveItemNavigation="true"
Overflow Modes
π Read: references/overflow-modes.md
- Limiting displayed items with
MaxItemsproperty Collapsedmode: Hide middle items, show first/last with expand buttonMenumode: Remaining items in a dropdown submenuWrapmode: Items wrap to multiple linesScrollmode: Horizontal scroll bar for overflowHiddenmode: Hidden items revealed on parent clickNonemode: All items on a single line
Templates and Customization
π Read: references/templates-and-customization.md
ItemTemplatefor rendering custom item UISeparatorTemplatefor customizing item separators- Template
contextparameter for accessing current item data - Integrating Chip components with
ItemTemplate - Specific item customization using child content
Styling and Appearance
π Read: references/styling-and-appearance.md
- CSS classes for customization (
.e-breadcrumb-item,.e-breadcrumb-text,.e-breadcrumb-icon,.e-breadcrumb-separator) - Theme Studio integration for custom themes
- Overriding default Breadcrumb styling with CSS
- Customizing background, text color, icon color, and separator color
Quick Start Example
Basic breadcrumb with explicit items:
@using Syncfusion.Blazor.Navigations
<SfBreadcrumb>
<BreadcrumbItems>
<BreadcrumbItem IconCss="e-icons e-home" Url="https://example.com/home"></BreadcrumbItem>
<BreadcrumbItem Text="Products" Url="https://example.com/products"></BreadcrumbItem>
<BreadcrumbItem Text="Electronics" Url="https://example.com/products/electronics"></BreadcrumbItem>
<BreadcrumbItem Text="Laptops"></BreadcrumbItem>
</BreadcrumbItems>
</SfBreadcrumb>
Auto-generated breadcrumb from current URL:
@using Syncfusion.Blazor.Navigations
<SfBreadcrumb></SfBreadcrumb>
Common Patterns
Pattern 1: Icon + Text Items
Combine icons with text for visual hierarchy and quick scanning:
<SfBreadcrumb>
<BreadcrumbItems>
<BreadcrumbItem IconCss="e-icons e-home" Url="/"></BreadcrumbItem>
<BreadcrumbItem IconCss="e-icons e-folder-open" Text="Documents" Url="/docs"></BreadcrumbItem>
<BreadcrumbItem Text="Projects"></BreadcrumbItem>
</BreadcrumbItems>
</SfBreadcrumb>
Pattern 2: Handling Long Breadcrumb Trails
Use MaxItems with OverflowMode to manage deep hierarchies:
<SfBreadcrumb MaxItems="4" OverflowMode="BreadcrumbOverflowMode.Menu">
<BreadcrumbItems>
<BreadcrumbItem Text="Home" Url="/"></BreadcrumbItem>
<BreadcrumbItem Text="Category 1" Url="/cat1"></BreadcrumbItem>
<BreadcrumbItem Text="Category 2" Url="/cat1/cat2"></BreadcrumbItem>
<BreadcrumbItem Text="Category 3" Url="/cat1/cat2/cat3"></BreadcrumbItem>
<BreadcrumbItem Text="Current Page"></BreadcrumbItem>
</BreadcrumbItems>
</SfBreadcrumb>
Pattern 3: Dynamic Item Management
Add/remove items at runtime based on user actions:
@using Syncfusion.Blazor.Navigations
<SfBreadcrumb Items="@breadcrumbItems"></SfBreadcrumb>
<button @onclick="AddItem">Add Item</button>
<button @onclick="RemoveItem">Remove Item</button>
@code {
List<BreadcrumbItem> breadcrumbItems = new List<BreadcrumbItem>
{
new BreadcrumbItem { IconCss = "e-icons e-home" },
new BreadcrumbItem { Text = "Products" }
};
private void AddItem()
{
breadcrumbItems.Add(new BreadcrumbItem { Text = "New Item" });
}
private void RemoveItem()
{
if (breadcrumbItems.Count > 0)
breadcrumbItems.RemoveAt(breadcrumbItems.Count - 1);
}
}
Pattern 4: Custom Separator with Template
Use SeparatorTemplate for custom visual separators:
<SfBreadcrumb>
<BreadcrumbItems>
<BreadcrumbItem Text="Home" Url="/"></BreadcrumbItem>
<BreadcrumbItem Text="Products" Url="/products"></BreadcrumbItem>
<BreadcrumbItem Text="Details"></BreadcrumbItem>
</BreadcrumbItems>
<BreadcrumbTemplates>
<SeparatorTemplate>
<span class="e-icons e-arrow"></span>
</SeparatorTemplate>
</BreadcrumbTemplates>
</SfBreadcrumb>
Key Props
| Property | Type | Default | Purpose |
|---|---|---|---|
Items | List<BreadcrumbItem> | null | Collection of breadcrumb items to display |
Url | string | null | Generate items from a specific URL path |
MaxItems | int? | null | Maximum items to display before overflow handling |
OverflowMode | BreadcrumbOverflowMode | Default | How to handle items exceeding MaxItems |
EnableNavigation | bool | true | Enable/disable URL navigation on item click |
EnableActiveItemNavigation | bool | false | Enable navigation for the last (active) item |
ActiveItem | string | null | Set the active (currently selected) item |
Class | string | null | Custom CSS class for styling |
Common Use Cases
- E-commerce product breadcrumbs: Show navigation path through categories (Home > Electronics > Laptops > Gaming Laptops)
- Admin dashboard navigation: Display user position in multi-level menu hierarchy
- File explorer: Visualize folder navigation path with icons
- Documentation sites: Show section hierarchy (Documentation > Guides > Getting Started)
- Search result filters: Display active filter path (Search > Results > Filtered by Price)
- Step-by-step workflows: Indicate current step in multi-step processes (Step 1 > Step 2 > Current)
Next Steps: Read the appropriate reference file based on your use case from the "Documentation and Navigation Guide" section above.