mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
fb1c1fc1a6
Fixed an issue where a table would not automatically load after initialization when an ActionColumn was used.
15 lines
299 B
C#
15 lines
299 B
C#
namespace AntDesign
|
|
{
|
|
public partial class ActionColumn : ColumnBase
|
|
{
|
|
protected override void OnInitialized()
|
|
{
|
|
base.OnInitialized();
|
|
if (IsHeader)
|
|
{
|
|
Context.HeaderColumnInitialed(this);
|
|
}
|
|
}
|
|
}
|
|
}
|