diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor index 2d9478bce9e..e83b1921990 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor @@ -30,6 +30,29 @@ + +
+
+ + + + + + + + + +
+
+ diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs index f04f055bd0c..1af4f608cf3 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs @@ -18,6 +18,10 @@ public partial class TablesFixedColumn [NotNull] private List? Items { get; set; } + private bool _isFixed; + + private void ToggleFirstTwoColumns() => _isFixed = !_isFixed; + /// /// /// diff --git a/src/BootstrapBlazor.Server/Locales/en-US.json b/src/BootstrapBlazor.Server/Locales/en-US.json index ef9f0bb0a83..ff5115ea0b5 100644 --- a/src/BootstrapBlazor.Server/Locales/en-US.json +++ b/src/BootstrapBlazor.Server/Locales/en-US.json @@ -729,7 +729,6 @@ "P1": "The current website theme supports the following", "P11": "Fluent UI (integrated)", "P12": "Theme styles are provided as static web assets. In the", - "P13": "static web assets", "P14": "section, add the theme stylesheet after the base bundle", "P15": "Enable", "P16": "The built-in themes support both light and dark modes through the", @@ -5162,6 +5161,10 @@ "TablesFilterTemplateDescription": "

The FilterTemplate type is RenderFragment its value is a custom component, and the component must inherit the filterBase In this case, the last column in this case, the Quantity column, uses the custom component by filtering the template CustomerFilter [portal] CustomerFilter component source code

Notes: