Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Updated docs.
  • Loading branch information
philliphoff committed Jun 2, 2025
commit 4acc061f139e6fd42721b886134b9e0a3201b604
6 changes: 6 additions & 0 deletions src/Core/Components/DataGrid/Columns/ColumnBase.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@ protected internal virtual Task OnCellKeyDownAsync(FluentDataGridCell<TGridItem>
/// </summary>
protected internal RenderFragment HeaderContent { get; protected set; }

/// <summary>
/// Gets or sets a <see cref="RenderFragment" /> that will be rendered for this column's header title.
/// This allows derived components to change the header title output. However, derived components are then
/// responsible for using <see cref="HeaderCellTitleTemplate" /> within that new output if they want to continue
/// respecting that option.
/// </summary>
protected internal RenderFragment HeaderTitleContent { get; protected set; }

/// <summary>
Expand Down
Loading