feat: 仅一次加载初始化滚动条
This commit is contained in:
parent
261f91683f
commit
ef1718360e
|
@ -218,7 +218,7 @@ namespace Bootstrap.Admin.Components
|
||||||
if (FixedHeader)
|
if (FixedHeader)
|
||||||
{
|
{
|
||||||
// 调用客户端脚本 resetWith
|
// 调用客户端脚本 resetWith
|
||||||
await JSRuntime.InitTableAsync(RetrieveId());
|
await JSRuntime.InitTableAsync(RetrieveId(), firstRender);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,6 +101,9 @@ namespace Bootstrap.Admin.Extensions
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 初始化 Table 组件
|
/// 初始化 Table 组件
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static ValueTask InitTableAsync(this IJSRuntime? jSRuntime, string id) => jSRuntime.InvokeVoidAsync("$.initTable", id);
|
/// <param name="jSRuntime"></param>
|
||||||
|
/// <param name="id"></param>
|
||||||
|
/// <param name="firstRender"></param>
|
||||||
|
public static ValueTask InitTableAsync(this IJSRuntime? jSRuntime, string id, bool firstRender) => jSRuntime.InvokeVoidAsync("$.initTable", id, firstRender);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue