ant-design-blazor/components/table/ActionColumn.razor.cs
James Yeung fb1c1fc1a6 fix(module: table): not automatically load with ActionColumn (#1883)
Fixed an issue where a table would not automatically load after initialization when an ActionColumn was used.
2021-08-28 14:10:39 +08:00

15 lines
299 B
C#

namespace AntDesign
{
public partial class ActionColumn : ColumnBase
{
protected override void OnInitialized()
{
base.OnInitialized();
if (IsHeader)
{
Context.HeaderColumnInitialed(this);
}
}
}
}