Skip to content

Commit 8160795

Browse files
authored
doc(TableColumn): update formatter callback annotate (#4745)
1 parent 725ee30 commit 8160795

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/BootstrapBlazor/Attributes/AutoGenerateColumnAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public class AutoGenerateColumnAttribute : AutoGenerateBaseAttribute, ITableColu
156156
public string? PlaceHolder { get; set; }
157157

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

src/BootstrapBlazor/Components/Table/ITableColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public interface ITableColumn : IEditorItem
126126
string? FormatString { get; set; }
127127

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

src/BootstrapBlazor/Components/Table/TableColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public class TableColumn<TItem, TType> : BootstrapComponentBase, ITableColumn
290290
public string? FormatString { get; set; }
291291

292292
/// <summary>
293-
/// 获得/设置 列格式化回调委托
293+
/// <inheritdoc/>
294294
/// </summary>
295295
[Parameter]
296296
public Func<object?, Task<string?>>? Formatter { get; set; }

0 commit comments

Comments
 (0)