By default, a DropdownMenu is automatically positioned at 100% from the top and along the left side of its parent.
@@ -84,19 +84,19 @@
-
+
-
+
Add a header to label sections of actions in any dropdown menu.
-
+
Separate groups of related menu items with a divider.
-
+
Place any freeform text within a dropdown menu with text and use spacing utilities.
Note that youll likely need additional sizing styles to constrain the menu width.
@@ -104,14 +104,14 @@
-
+
Put a form within a dropdown menu, or make it into a dropdown menu, and use margin or padding utilities to give it the negative space you require.
-
+
By default, the
DropdownMenu is closed when clicking either inside or outside the
DropdownMenu.
You can use the
AutoClose and
AutoCloseBehavior parameters to change this behavior of the
Dropdown.
@@ -119,7 +119,7 @@
-
+
@@ -151,7 +151,7 @@
-
+
All dropdown events are fired at the toggling element and then bubbled up.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/AutoComplete/AutoCompleteDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/AutoComplete/AutoCompleteDocumentation.razor
index 82219fbc3..843fc9057 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/AutoComplete/AutoCompleteDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/AutoComplete/AutoCompleteDocumentation.razor
@@ -13,11 +13,11 @@
-
+
-
+
In the below example, StringComparision.Ordinal
is used to make the filter case-sensitive.
@@ -25,19 +25,19 @@
-
+
-
+
-
+
-
+
Blazor Bootstrap autocomplete component supports the following keyboard shortcuts to initiate various actions.
@@ -81,7 +81,7 @@
-
+
Use the Disabled
parameter to disable the AutoComplete
.
Also, use Enable() and Disable() methods to enable and disable the AutoComplete
.
@@ -91,7 +91,7 @@
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/CurrencyInput/CurrencyInputDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/CurrencyInput/CurrencyInputDocumentation.razor
index 19cccaf9c..fd89900cd 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/CurrencyInput/CurrencyInputDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/CurrencyInput/CurrencyInputDocumentation.razor
@@ -13,7 +13,7 @@
-
+
By default, e + -
are blocked. For all integral numeric types, dot .
is blocked.
The default locale is en-US.
@@ -21,16 +21,16 @@
-
+
-
+
Set HideCurrencySymbol
parameter value to true
to hide the currency symbol.
-
+
In the below example, formatting adds zeros to display minimum integers and fractions.
MinimumFractionDigits and MaximumFractionDigits parameters are applicable for floating-point numeric types only.
@@ -38,17 +38,17 @@
-
+
In many locales, accounting format means to wrap the number with parentheses instead of appending a minus sign. You can enable this formatting by setting the CurrencySign option to Accounting
. The default value is Standard
.
-
+
CurrencyInput
is a generic component. Always specify the exact type. In the below example TValue is set to int
, int?
, float
, float?
, double
, double?
, decimal
, and decimal?
.
-
+
Set EnableMinMax="true"
and set the Min
and Max
parameters to restrict the user input between the Min and Max range.
If the user tries to enter a number in the CurrencyInput field which is out of range, then it will override with Min or Max value based on the context. If the user input is less than the Min value, then it will override with the Min value.
@@ -57,17 +57,17 @@
-
+
You can change the text alignment according to your need. Use the TextAlignment
parameter to set the alignment. In the below example, alignment is set to center and end.
-
+
By default, negative numbers are not allowed. Set the AllowNegativeNumbers
parameter to true to allow the negative numbers.
-
+
Use the Disabled
parameter to disable the CurrencyInput
.
Also, use Enable() and Disable() methods to enable and disable the CurrencyInput
.
@@ -77,7 +77,7 @@
-
+
Like any other blazor input components,
CurrencyInput
supports validations.
Add the DataAnnotations on the
CurrencyInput
component to validate the user input before submitting the form.
@@ -86,11 +86,11 @@
-
+
-
+
This event fires on every user keystroke that changes the CurrencyInput
value.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/DateInput/DateInputDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/DateInput/DateInputDocumentation.razor
index b0769c6fd..e7027bc69 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/DateInput/DateInputDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/DateInput/DateInputDocumentation.razor
@@ -13,7 +13,7 @@
-
+
The input UI generally varies from browser to browser.
In unsupported browsers, the control degrades gracefully to type="text"
.
@@ -22,7 +22,7 @@
-
+
The Blazor Bootstrap DateInput component supports several data types: DateOnly
, DateOnly?
, DateTime
, and DateTime?
.
@@ -35,7 +35,7 @@
-
+
Set EnableMinMax="true"
and set the Max
and Min
parameters to restrict the user input between the Min and Max range.
@@ -46,7 +46,7 @@
-
+
Use the Disabled
parameter to disable the DateInput
.
Also, use Enable() and Disable() methods to enable and disable the DateInput
.
@@ -56,21 +56,21 @@
-
+
Like any other blazor input component, DateInput component supports validations. Use the DataAnnotations to validate the user input before submitting the form. In the below example, we used the Required
attributes.
-
+
This event fires on every user keystroke/selection that changes the DateInput value.
-
+
One common scenario is that the date fields are restricted based on the entry in another date field.
In the example below, we restrict the course end time based on the selection of course start date.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/NumberInput/NumberInputDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/NumberInput/NumberInputDocumentation.razor
index 5308fd223..e31ef318c 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Form/NumberInput/NumberInputDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Form/NumberInput/NumberInputDocumentation.razor
@@ -13,17 +13,17 @@
-
+
By default, e + -
are blocked. For all integral numeric types, dot .
is blocked.
-
+
NumberInput
is a generic component. Always specify the exact type. In the below example TValue is set to int
, int?
, float
, float?
, double
, double?
, decimal
, and decimal?
.
-
+
Set EnableMinMax="true"
and set the Min
and Max
parameters to restrict the user input between the Min and Max range.
@@ -34,22 +34,22 @@
-
+
The Step
sets the stepping interval when clicking the up and down spinner buttons. If not explicitly included, Step
defaults to 1.
-
+
You can change the text alignment according to your need. Use the TextAlignment
parameter to set the alignment. In the below example, alignment is set to center and end.
-
+
By default, negative numbers are not allowed. Set the AllowNegativeNumbers
parameter to true to allow the negative numbers.
-
+
Use the Disabled
parameter to disable the NumberInput
.
Also, use Enable() and Disable() methods to enable and disable the NumberInput
.
@@ -59,7 +59,7 @@
-
+
Like any other blazor input component,
NumberInput
supports validations.
Add the DataAnnotations on the
NumberInput
component to validate the user input before submitting the form.
@@ -68,7 +68,7 @@
-
+
This event fires on every user keystroke that changes the NumberInput
value.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/GettingStarted/GettingStartedDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/GettingStarted/GettingStartedDocumentation.razor
index 6657dfd44..00eb4beae 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/GettingStarted/GettingStartedDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/GettingStarted/GettingStartedDocumentation.razor
@@ -15,7 +15,7 @@
-
+
Please find the getting started documentation links, corresponding to each .NET version and project type, listed below:
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/01-Overview/Grid_Overview_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/01-Overview/Grid_Overview_Documentation.razor
index f2d3a5ffc..73954515a 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/01-Overview/Grid_Overview_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/01-Overview/Grid_Overview_Documentation.razor
@@ -13,11 +13,11 @@
-
+
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/02-data-binding/Grid_DataBinding_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/02-data-binding/Grid_DataBinding_Documentation.razor
index ae2e87650..0317e0eb1 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/02-data-binding/Grid_DataBinding_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/02-data-binding/Grid_DataBinding_Documentation.razor
@@ -11,12 +11,12 @@
-
+
Assign a collection to the Data
parameter to render the grid dynamically. The example below will render different department employees in the individual grid.
-
+
You can update the collection assigned to the Data
parameter. In the below example, the grid will render the updated collection.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Filters_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Filters_Documentation.razor
index eacceca93..5833459d0 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Filters_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/03-filters/Grid_Filters_Documentation.razor
@@ -11,13 +11,13 @@
-
+
For filtering, AllowFiltering
and PropertyName
parameters are required.
Add AllowFiltering="true"
parameter to Grid and PropertyName
parameter to all the GridColumns.
-
+
In the below example, StringComparision.Ordinal
is used on the Employee Name column to make the filter case-sensitive.
By default, StringComparison.OrdinalIgnoreCase
is used to compare culture-agnostic and case-insensitive string matching.
@@ -25,7 +25,7 @@
-
+
FilterOperator
and FilterValue
parameters are required to set the default filter.
@@ -34,14 +34,14 @@
-
+
Filterable
parameter is required to disable the filter on a specific column. Add Filterable="false"
parameter to GridColumn. The column filter is disabled on the Id column in the below example.
-
+
Add FilterTextboxWidth
parameter to the GridColumn to increase or decrease the filter textbox width, FilterTextboxWidth
parameter is optional.
Filter textbox width measured in pixels.
@@ -57,11 +57,11 @@
-
+
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/04-paging/Grid_Paging_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/04-paging/Grid_Paging_Documentation.razor
index aab3b56cf..42d20cb9f 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/04-paging/Grid_Paging_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/04-paging/Grid_Paging_Documentation.razor
@@ -11,24 +11,24 @@
-
+
For paging, AllowPaging
and PageSize
parameters are required.
Add AllowPaging="true"
and PageSize="20"
parameters to the Grid. PageSize
parameter is optional.
The default page size is 10.
-
+
-
+
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/05-sorting/Grid_Sorting_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/05-sorting/Grid_Sorting_Documentation.razor
index 6ec99e9d6..4c2772613 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/05-sorting/Grid_Sorting_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/05-sorting/Grid_Sorting_Documentation.razor
@@ -11,13 +11,13 @@
-
+
For sorting, AllowSorting
and SortKeySelector
parameters are required.
Add AllowSorting="true"
parameter to Grid and SortKeySelector
to all the GridColumns.
-
+
IsDefaultSortColumn
parameter is required to set the default sorting. Add IsDefaultSortColumn="true"
parameter to the GridColumn.
The default sort direction will be ascending. To change the default sorting of a column, add SortDirection="SortDirection.Descending"
to the GridColumn.
If more than one GridColumn has the IsDefaultSortColumn paramter, it will pick the first column as the default sorting column.
@@ -25,7 +25,7 @@
-
+
Add Sortable="false"
parameter the GridColumn to disable the sorting. If sorting is disabled, then the SortKeySelector
parameter is not required. The sorting is disabled on the Designation column in the below example.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/06-selection/Grid_Selection_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/06-selection/Grid_Selection_Documentation.razor
index 94f4be137..0b892f6af 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/06-selection/Grid_Selection_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/06-selection/Grid_Selection_Documentation.razor
@@ -11,7 +11,7 @@
-
+
Set
AllowSelection="true"
to enable the selection on the
Grid
.
By default,
SelectionMode
is
Single.
@@ -19,7 +19,7 @@
-
+
To select multiple rows, set SelectionMode="GridSelectionMode.Multiple"
.
@@ -29,7 +29,7 @@
-
+
We can disable the header checkbox or row level checkbox based on a condition.
For this, we have
DisableAllRowsSelection
and
DisableRowSelection
delegate parameters. In the below example, we disabled the header checkbox if any of the employee Id is less than 105.
@@ -38,7 +38,7 @@
-
+
These CSS variables are used to set the default colors and background color of a row when it's selected.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/07-alignment/Grid_Alignment_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/07-alignment/Grid_Alignment_Documentation.razor
index 31f9bf294..5d07f7259 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/07-alignment/Grid_Alignment_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/07-alignment/Grid_Alignment_Documentation.razor
@@ -11,12 +11,12 @@
-
+
Use the HeaderTextAlignment
parameter to change the header column alignment. By default, HeaderTextAlignment
is set to Alignment.Start
. Other options you can use are Alignment.Center
and Alignment.End
.
-
+
Use the TextAlignment
parameter to change the cell data alignment. By default, TextAlignment
is set to Alignment.Start
. Other options you can use are Alignment.Center
and Alignment.End
.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/08-grid-settings/Grid_GridSettings_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/08-grid-settings/Grid_GridSettings_Documentation.razor
index 0a1051c2c..5f2c748db 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/08-grid-settings/Grid_GridSettings_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/08-grid-settings/Grid_GridSettings_Documentation.razor
@@ -11,7 +11,7 @@
-
+
This example shows how to save/load the Grid state. The state includes the page number, page size, and filters.
In version 0.5.1
and above, the Grid sorting state is not included as part of GridSettings. We will add it in the subsequent releases.
Browser local storage is used to persist the Grid state. Common locations exist for persisting state are Server-side storage, URL, Browser storage, and In-memory state container service.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/09-custom-css-class/Grid_CustomCSSClass_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/09-custom-css-class/Grid_CustomCSSClass_Documentation.razor
index 7a91ee84d..021c1487d 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/09-custom-css-class/Grid_CustomCSSClass_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/09-custom-css-class/Grid_CustomCSSClass_Documentation.razor
@@ -11,27 +11,27 @@
-
+
In the below example, we applied table-danger
CSS class to the row where the employee is inactive and the table-success
CSS class to the row where the employee designation is Architect.
-
+
In the below example, we applied table-danger
CSS class to the Active column where the employee is inactive and the table-success
CSS class to the Active column where the employee is active.
-
+
In the following example, the Class
parameter is used to apply the CSS class to an entire grid column, including the header.
-
+
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/10-events/Grid_Events_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/10-events/Grid_Events_Documentation.razor
index 2901b3000..c6741832f 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/10-events/Grid_Events_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/10-events/Grid_Events_Documentation.razor
@@ -11,12 +11,12 @@
-
+
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/11-translations/Grid_Translations_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/11-translations/Grid_Translations_Documentation.razor
index c63ca34dd..c0b28627f 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/11-translations/Grid_Translations_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/11-translations/Grid_Translations_Documentation.razor
@@ -11,7 +11,7 @@
-
+
In the example below, you will see translations related to pagination and filters in Dutch.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/12-fixed-header/Grid_FixedHeader_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/12-fixed-header/Grid_FixedHeader_Documentation.razor
index 954b39b5f..3a49a1792 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/12-fixed-header/Grid_FixedHeader_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/12-fixed-header/Grid_FixedHeader_Documentation.razor
@@ -11,7 +11,7 @@
-
+
To set the fixed header, set the
FixedHeader parameter to
true. The minimum height of the grid is
320 pixels.
You can change the units to em, pt, px, or etc. by setting the
Unit parameter.
@@ -19,7 +19,7 @@
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/13-freeze-columns/Grid_FreezeColumns_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/13-freeze-columns/Grid_FreezeColumns_Documentation.razor
index fc43af58e..1856302e8 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/13-freeze-columns/Grid_FreezeColumns_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/13-freeze-columns/Grid_FreezeColumns_Documentation.razor
@@ -11,16 +11,16 @@
-
+
-
+
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/14-detail-view/Grid_DetailView_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/14-detail-view/Grid_DetailView_Documentation.razor
index 9b01e9f23..9b621a49c 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/14-detail-view/Grid_DetailView_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/14-detail-view/Grid_DetailView_Documentation.razor
@@ -11,12 +11,12 @@
-
+
To enable detail view, set the AllowDetailView
parameter to true. In the following example, existing <GridColumn>
tags are nested under <GridColumns>
tag to distinguish them from <GridDetailView>
.
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/15-nested-grid/Grid_Nested_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/15-nested-grid/Grid_Nested_Documentation.razor
index dda8e7cff..70dead2c6 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/15-nested-grid/Grid_Nested_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/15-nested-grid/Grid_Nested_Documentation.razor
@@ -11,7 +11,7 @@
-
+
To create a nested grid, we first need to enable the detail view. To enable the detail view, set the AllowDetailView
parameter to true. In the following example, existing <GridColumn>
tags are nested under <GridColumns>
tag to distinguish them from <GridDetailView>
.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/99-other/Grid_Other_Documentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/99-other/Grid_Other_Documentation.razor
index 9c43425fe..a8d4e919b 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/99-other/Grid_Other_Documentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Grid/99-other/Grid_Other_Documentation.razor
@@ -11,28 +11,28 @@
-
+
Example: @@context.Salary.ToString("N2").
-
+
To prevent text from wrapping, add TextNoWrap="true"
to the GridColumn.
-
+
If there are no records to display in the Grid, by default, it will display the No records to display message. You can change this message by adding the EmptyText
parameter to the Grid.
-
+
Set the GridEmptyDataTemplate
to customize the message displayed when the grid has no records.
-
+
In the below example, we use <HeaderContent>
and <ChildContent>
tags to define custom column header and cell content. When defining header content, filters and sorting are removed from column.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Icons/IconDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Icons/IconDocumentation.razor
index b22db5e48..b666153e3 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Icons/IconDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Icons/IconDocumentation.razor
@@ -11,57 +11,57 @@
-
+
-
+
-
+
In the following example, we used Font Awesome 6.4.2 free version icons. For Font Awesome setup, please follow the Font Awesome website.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
In the following example, we used Font Awesome 6.4.2 free version icons. For Font Awesome setup, please follow the Font Awesome website.
-
+
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Images/ImageDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Images/ImageDocumentation.razor
index 53d2de8ee..5d516acc5 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Images/ImageDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Images/ImageDocumentation.razor
@@ -11,21 +11,21 @@
-
+
By default images are responsive. The default value of the IsResponsive parameter is true.
-
+
To set the image to have a rounded 1px border appearance, set the IsThumbnail parameter to true.
-
+
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/server/LayoutServerDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/server/LayoutServerDocumentation.razor
index 31fa61f85..7231cc5da 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/server/LayoutServerDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/server/LayoutServerDocumentation.razor
@@ -11,7 +11,7 @@
-
+
Assuming you followed the getting started docs for the initial setup.
@@ -21,7 +21,7 @@
-
+
1. Replace MainLayout.razor page code with the below code.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/webassembly/LayoutWebAssemblyDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/webassembly/LayoutWebAssemblyDocumentation.razor
index 88ea87c90..0a73b4425 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/webassembly/LayoutWebAssemblyDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Layout/webassembly/LayoutWebAssemblyDocumentation.razor
@@ -11,7 +11,7 @@
-
+
Assuming you followed the getting started docs for the initial setup.
@@ -21,7 +21,7 @@
-
+
1. Replace MainLayout.razor page code with the below code.
diff --git a/BlazorBootstrap.Demo.RCL/Components/Pages/Maps/GoogleMapDocumentation.razor b/BlazorBootstrap.Demo.RCL/Components/Pages/Maps/GoogleMapDocumentation.razor
index 7368c939c..d936d7a75 100644
--- a/BlazorBootstrap.Demo.RCL/Components/Pages/Maps/GoogleMapDocumentation.razor
+++ b/BlazorBootstrap.Demo.RCL/Components/Pages/Maps/GoogleMapDocumentation.razor
@@ -11,7 +11,7 @@
-
+
Before you start using the GoogleMap component in your project, you need an API key.
Please follow the link below for detailed steps.
@@ -19,47 +19,47 @@
-
+
This example demonstrates how to use a simple Google Map component.
-
+
This example demonstrates how to use a simple Google Map component with marker.
-
-
+
+
To scale a marker, use the PinElement.Scale option.
-
+
Use the PinElement.Background option to change the background color of a marker.
-
+
Use the PinElement.BorderColor option to change the border color of a marker.
-