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 2b1ab85 commit be5ede0Copy full SHA for be5ede0
src/BootstrapBlazor/Dynamic/DataTableDynamicContext.cs
@@ -28,6 +28,11 @@ public class DataTableDynamicContext : DynamicObjectContext
28
29
private Action<DataTableDynamicContext, ITableColumn>? AddAttributesCallback { get; set; }
30
31
+ /// <summary>
32
+ /// 获得/设置 是否启用内部缓存 默认 true 启用
33
+ /// </summary>
34
+ public bool UseCache { get; set; } = true;
35
+
36
/// <summary>
37
/// 负责将 DataRow 与 Items 关联起来方便查找提高效率
38
/// </summary>
0 commit comments