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 @@ -39,7 +39,8 @@
IsBordered="true" IsStriped="true"
IsMultipleSelect="true"
Height="200"
FixedMultipleColumn="true">
ShowLineNo="true"
FixedMultipleColumn="false">
<TableColumns>
<TableColumn @bind-Field="@context.Name" Width="120" Fixed="true" />
<TableColumn @bind-Field="@context.DateTime" Width="180" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class TableColumnClientStatus
public List<TableColumnState> Columns { get; set; } = [];

/// <summary>
/// <para lang="zh">表格宽度</para>
/// <para lang="en">Table Width</para>
/// <para lang="zh">表格宽度,当值为 0 时表示表格宽度自适应</para>
/// <para lang="en">Table Width, when the value is 0, it means the table width is auto</para>
/// </summary>
[JsonPropertyName("table")]
public int TableWidth { get; set; }
Expand Down
Loading