Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public class AutoGenerateColumnAttribute : AutoGenerateBaseAttribute, ITableColu
public string? PlaceHolder { get; set; }

/// <summary>
/// 获得/设置 列格式化回调委托
/// <inheritdoc/>
/// </summary>
public Func<object?, Task<string?>>? Formatter { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/Components/Table/ITableColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public interface ITableColumn : IEditorItem
string? FormatString { get; set; }

/// <summary>
/// 获得/设置 列格式化回调委托
/// 获得/设置 列格式化回调委托 <see cref="TableColumnContext{TItem, TValue}"/>
/// </summary>
Func<object?, Task<string?>>? Formatter { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/Components/Table/TableColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public class TableColumn<TItem, TType> : BootstrapComponentBase, ITableColumn
public string? FormatString { get; set; }

/// <summary>
/// 获得/设置 列格式化回调委托
/// <inheritdoc/>
/// </summary>
[Parameter]
public Func<object?, Task<string?>>? Formatter { get; set; }
Expand Down
Loading