diff --git a/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs b/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs
index 5a3913bce19..405b020c08f 100644
--- a/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs
+++ b/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs
@@ -15,5 +15,6 @@ public interface IToolbarComponent
/// 获得/设置 是否显示,默认为 true 显示
/// Gets or sets whether to display. Default is true
///
+ /// 可用于权限控制按钮是否显示
bool IsShow { get; set; }
}
diff --git a/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs b/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs
index 51abf64582a..e20ced5d0f8 100644
--- a/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs
+++ b/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs
@@ -9,381 +9,352 @@ class InternalTableColumn(string fieldName, Type fieldType, string? fieldText =
{
private string FieldName { get; } = fieldName;
+ ///
+ ///
+ ///
public bool? Sortable { get; set; }
+ ///
+ ///
+ ///
public bool DefaultSort { get; set; }
+ ///
+ ///
+ ///
public SortOrder DefaultSortOrder { get; set; }
+ ///
+ ///
+ ///
public bool? Filterable { get; set; }
+ ///
+ ///
+ ///
public bool? Searchable { get; set; }
+ ///
+ ///
+ ///
public int? Width { get; set; }
+ ///
+ ///
+ ///
public bool Fixed { get; set; }
+ ///
+ ///
+ ///
public bool? TextWrap { get; set; }
+ ///
+ ///
+ ///
public bool? TextEllipsis { get; set; }
///
- /// 获得/设置 是否不进行验证 默认为 false
- /// Gets or sets whether不进行验证 Default is为 false
+ ///
///
public bool SkipValidate { get; set; }
///
- ///
- ///
+ ///
///
public bool? Ignore { get; set; }
///
- ///
- ///
+ ///
///
public bool? Readonly { get; set; }
///
- ///
- ///
+ ///
///
public bool? IsReadonlyWhenAdd { get; set; }
///
- ///
- ///
+ ///
///
public bool? IsReadonlyWhenEdit { get; set; }
///
- ///
- ///
+ ///
///
public bool? Visible { get; set; }
///
- ///
- ///
+ ///
///
public bool? IsVisibleWhenAdd { get; set; } = true;
///
- ///
- ///
+ ///
///
public bool? IsVisibleWhenEdit { get; set; } = true;
///
- ///
- ///
+ ///
///
public bool? Required { get; set; }
///
- ///
- ///
+ ///
///
public bool? IsRequiredWhenAdd { get; set; }
///
- ///
- ///
+ ///
///
public bool? IsRequiredWhenEdit { get; set; }
///
- ///
- ///
+ ///
///
public string? RequiredErrorMessage { get; set; }
///
- ///
- ///
+ ///
///
public bool? ShowLabelTooltip { get; set; }
///
- ///
- ///
+ ///
///
public string? CssClass { get; set; }
///
- ///
- ///
+ ///
///
public BreakPoint ShownWithBreakPoint { get; set; }
///
- ///
- ///
+ ///
///
public RenderFragment