Skip to content

Commit 5c5c916

Browse files
committed
983366: Updated the UG document for the Breadcrumb
1 parent 544b028 commit 5c5c916

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

blazor/breadcrumb/breadcrumb-items.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Breadcrumb Items in Blazor Breadcrumb Component
1111

12-
The Syncfusion [Blazor Breadcrumb](https://www.syncfusion.com/blazor-components/blazor-breadcrumb) supports to generate items based on the current URL by default. You can set the [BreadcrumbItem](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.BreadcrumbItem.html) tag directive or [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.SfBreadcrumb.html#Syncfusion_Blazor_Navigations_SfBreadcrumb_Url) property to generate the items.
12+
The Syncfusion [Blazor Breadcrumb](https://www.syncfusion.com/blazor-components/blazor-breadcrumb) component supports to generate items based on the current URL by default. Alternatively, breadcrumb items can be manually defined using the[BreadcrumbItem](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.BreadcrumbItem.html) tag directive or by setting the [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.SfBreadcrumb.html#Syncfusion_Blazor_Navigations_SfBreadcrumb_Url) property.
1313

1414
[BreadcrumbItem](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.BreadcrumbItem.html) has the following properties for navigation and its customizations.
1515

blazor/breadcrumb/getting-started-with-web-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ During project creation, be sure to configure the appropriate [Interactive rende
2929

3030
To add **Blazor Breadcrumb** component in the app, open the NuGet package manager in Visual Studio (*Tools → NuGet Package Manager → Manage NuGet Packages for Solution*), search and install [Syncfusion.Blazor.Navigations](https://www.nuget.org/packages/Syncfusion.Blazor.Navigations/) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/).
3131

32-
If your Blazor Web App uses the `WebAssembly or Auto` render modes, ensure these NuGet packages are installed in the client project
32+
If the Blazor Web App uses the `WebAssembly or Auto` render modes, ensure the Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor component NuGet packages are installed in the client project.
3333

34-
Alternatively, you can use the Package Manager Console:
34+
Alternatively, the Package Manager Console can be used to install the required NuGet package
3535

3636
{% tabs %}
3737
{% highlight C# tabtitle="Package Manager" %}
@@ -74,7 +74,7 @@ N> For more details on creating a **Blazor Web App** with different interactive
7474

7575
## Install Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Navigations and Themes NuGet in the App
7676

77-
If your app uses the `WebAssembly` or `Auto` render modes, install the NuGet packages within the client project.
77+
If the Blazor Web App uses the `WebAssembly or Auto` render modes, ensure the Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor component NuGet packages are installed in the client project.
7878

7979
* Press <kbd>Ctrl</kbd>+<kbd>`</kbd> to open the integrated terminal in Visual Studio Code.
8080
* Ensure you’re in the project root directory where your `.csproj` file is located.

blazor/breadcrumb/icons.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ N> By default, icons are positioned to the left side of the item text.
3535

3636
## Breadcrumb with image
3737

38-
You can incorporate images into Breadcrumb items by utilizing the [IconCss](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.BreadcrumbItem.html#Syncfusion_Blazor_Navigations_BreadcrumbItem_IconCss) property. In the following example, an image is added to the Breadcrumb item with height and width by using `e-image-home` CSS class.
38+
Images can be incorporated into Breadcrumb items using the [IconCss](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.BreadcrumbItem.html#Syncfusion_Blazor_Navigations_BreadcrumbItem_IconCss) property. In the following example, an image is added to a Breadcrumb item with specific height and width by using `e-image-home` CSS class.
3939

4040
```cshtml
4141
@using Syncfusion.Blazor.Navigations
@@ -61,7 +61,7 @@ You can incorporate images into Breadcrumb items by utilizing the [IconCss](http
6161

6262
![Blazor Breadcrumb with Image](./images/image.png)
6363

64-
## Breadcrumb with SVG Image
64+
## Breadcrumb with SVG image
6565

6666
To add an SVG image to a Breadcrumb item, use the [IconCss](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.BreadcrumbItem.html#Syncfusion_Blazor_Navigations_BreadcrumbItem_IconCss) property with a custom CSS class. In the following example, SVG image is added to the Breadcrumb item with height and width by using `e-svg-home` class.
6767

@@ -89,7 +89,7 @@ To add an SVG image to a Breadcrumb item, use the [IconCss](https://help.syncfus
8989

9090
![Breadcrumb with SVG Image](./images/svg.PNG)
9191

92-
## Icon Only
92+
## Icon only
9393

9494
To display Breadcrumb items consisting solely of icons, provide the [IconCss](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.BreadcrumbItem.html#Syncfusion_Blazor_Navigations_BreadcrumbItem_IconCss) property for each `BreadcrumbItem` without specifying the `Text` property.
9595

blazor/breadcrumb/navigation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Navigation in Blazor Breadcrumb Component
1111

12-
By default, [Blazor Breadcrumb](https://www.syncfusion.com/blazor-components/blazor-breadcrumb) items support navigation using both relative and absolute URLs. You can also implement custom navigation logic by setting the [EnableNavigation](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.SfBreadcrumb.html#Syncfusion_Blazor_Navigations_SfBreadcrumb_EnableNavigation) property to `false`.
12+
By default, [Blazor Breadcrumb](https://www.syncfusion.com/blazor-components/blazor-breadcrumb) items support navigation using both relative and absolute URLs. Custom navigation logic can be implemented by setting the [EnableNavigation](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.SfBreadcrumb.html#Syncfusion_Blazor_Navigations_SfBreadcrumb_EnableNavigation) property to `false`.
1313

1414
## Relative URL
1515

@@ -60,7 +60,7 @@ The following example demonstrates Breadcrumb items configured with absolute URL
6060

6161
## Enable Navigation for the Last Breadcrumb Item
6262

63-
By default, the last item in a breadcrumb trail represents the current page and is generally not navigable. However, you can enable navigation for the last Breadcrumb item by setting the[EnableActiveItemNavigation](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.SfBreadcrumb.html#Syncfusion_Blazor_Navigations_SfBreadcrumb_EnableActiveItemNavigation) property to `true`. This can be useful in specific scenarios where the "current page" link should also be clickable.
63+
By default, the last item in a breadcrumb trail represents the current page and is typically not navigable. Navigation for the last Breadcrumb item can be enabled by setting the [EnableActiveItemNavigation](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Navigations.SfBreadcrumb.html#Syncfusion_Blazor_Navigations_SfBreadcrumb_EnableActiveItemNavigation) property to `true`. This can be useful in specific scenarios where the "current page" link should also be clickable.
6464

6565
The following example demonstrates enabling navigation for the last Breadcrumb item:
6666

blazor/breadcrumb/style-and-appearance.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ documentation: ug
99

1010
# Styles and Appearance in Blazor Breadcrumb Component
1111

12-
To modify the visual presentation of the Blazor Breadcrumb component, you need to override the default CSS of Breadcrumb component. Find the list of CSS classes and its corresponding section in Breadcrumb component. Also, you have an option to create your own custom theme for the controls using our [Theme Studio](https://blazor.syncfusion.com/themestudio/?theme=material).
12+
To modify the visual presentation of the Blazor Breadcrumb component, override its default CSS styles. The component provides a set of predefined CSS classes, each corresponding to specific sections of the Breadcrumb. These classes can be customized to achieve the desired appearance.
13+
14+
Additionally, a custom theme for Syncfusion controls can be created using the [Theme Studio](https://blazor.syncfusion.com/themestudio/?theme=material).
1315

1416
### Common CSS Classes for Customization
1517

blazor/breadcrumb/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Templates in Blazor Breadcrumb Component
1111

12-
The Blazor Breadcrumb component is templated, allowing you to customize various parts of its UI during rendering. This flexibility enables users to render custom components or content using your own logic, enhancing the appearance and functionality of your breadcrumbs.
12+
The Blazor Breadcrumb component is templated, allowing customization of various parts of its UI during rendering. This flexibility enables the rendering of custom components or content using user-defined logic, enhancing both the appearance and functionality of the breadcrumb trail.
1313

1414
The following template options are available in the Breadcrumb component:
1515

0 commit comments

Comments
 (0)