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 f99ad91 commit da189b5Copy full SHA for da189b5
src/BootstrapBlazor/Components/Table/Table.razor.cs
@@ -909,6 +909,11 @@ protected override void OnParametersSet()
909
{
910
base.OnParametersSet();
911
912
+ if (ScrollMode == ScrollMode.Virtual && IsTree)
913
+ {
914
+ throw new InvalidOperationException($"{GetType()} does not support virtual scrolling in tree mode. ${GetType()} 目前不支持虚拟滚动模式下设置 IsTree=\"true\"");
915
+ }
916
+
917
OnInitParameters();
918
919
if (Items != null && OnQueryAsync != null)
0 commit comments