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 @@ -74,7 +74,7 @@
</section>
<Table TItem="Foo"
IsPagination="true" PageItemsSource="@PageItemsSource"
IsStriped="true" IsBordered="true" IsMultipleSelect="true" EditDialogIsDraggable="true"
IsStriped="true" IsBordered="true" IsMultipleSelect="true" EditDialogIsDraggable="true" EditDialogShowMaximizeButton="false"
ShowToolbar="true" ShowExtendButtons="true" ShowSkeleton="true" IsExtendButtonsInRowHeader="true"
OnQueryAsync="@OnQueryAsync"
OnAddAsync="@OnAddAsync" OnSaveAsync="@OnSaveAsync" OnDeleteAsync="@OnDeleteAsync">
Expand Down
4 changes: 2 additions & 2 deletions src/BootstrapBlazor/Components/Table/Table.razor.Toolbar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ protected async Task SaveAsync(EditContext context, ItemChangedType changedType)
public Size EditDialogSize { get; set; } = Size.ExtraExtraLarge;

/// <summary>
/// 获得/设置 编辑框是否可以拖拽 默认 false 不可以拖拽
/// 获得/设置 编辑框是否可以拖拽 默认 false 不可以拖拽,参数 <see cref="EditDialogShowMaximizeButton"/> 值为 false 时此参数才生效
/// </summary>
[Parameter]
public bool EditDialogIsDraggable { get; set; }
Expand All @@ -769,7 +769,7 @@ protected async Task SaveAsync(EditContext context, ItemChangedType changedType)
public FullScreenSize EditDialogFullScreenSize { get; set; }

/// <summary>
/// 获得/设置 编辑框是否显示最大化按钮 默认 true 显示
/// 获得/设置 编辑框是否显示最大化按钮 默认 true 显示,此时 <see cref="EditDialogIsDraggable"/> 参数无效
/// </summary>
[Parameter]
public bool EditDialogShowMaximizeButton { get; set; } = true;
Expand Down
Loading