We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9af5f commit aa5842dCopy full SHA for aa5842d
src/BootstrapBlazor/Components/AutoFill/AutoFill.razor.cs
@@ -91,6 +91,12 @@ public partial class AutoFill<TValue>
91
[ExcludeFromCodeCoverage]
92
public RenderFragment<TValue>? Template { get => ItemTemplate; set => ItemTemplate = value; }
93
94
+ /// <summary>
95
+ /// Gets or sets whether virtual scrolling is enabled. Default is false.
96
+ /// </summary>
97
+ [Parameter]
98
+ public bool IsVirtualize { get; set; }
99
+
100
[Inject]
101
[NotNull]
102
private IStringLocalizer<AutoComplete>? Localizer { get; set; }
0 commit comments