公告: 旧版文档请移步 -> http://v2.laravel-filament.cn/docs

Languages

Version

Theme

Actions

Action 分组

概述

使用 ActionGroup 对象将 Action 分组到一个下拉菜单中。分组可能包含多个 Action 或者其他分组:

ActionGroup::make([
Action::make('view'),
Action::make('edit'),
Action::make('delete'),
])
Action group

本页是关于自定义分组触发按钮及下拉菜单外观。

自定义分组触发按钮样式

打开下拉菜单的按钮能够通过和普通 Action 同样的方式自定义。触发按钮的所有可用方法可用于自定义分组触发按钮:

use Filament\Support\Enums\ActionSize;
 
ActionGroup::make([
// Array of actions
])
->label('More actions')
->icon('heroicon-m-ellipsis-vertical')
->size(ActionSize::Small)
->color('primary')
->button()
Action group with custom trigger style

设置下拉菜单的位置

使用 dropdownPlacement() 方法,可以设置下拉菜单相对于触发按钮的位置:

ActionGroup::make([
// Array of actions
])
->dropdownPlacement('top-start')
Action group with top placement style

在 Action 之间添加分隔符

通过嵌套 ActionGroup 对象,你可以在不同 Action 分组之间添加分隔线:

ActionGroup::make([
ActionGroup::make([
// Array of actions
])->dropdown(false),
// Array of actions
])

dropdown(false) 方法将 Action 放在父级下拉菜单中,而不是新的嵌套下拉。

Action groups nested with dividers

设置下拉菜单的宽度

使用 dropdownWidth() 方法,可以为下拉菜单设置宽度。选项对应于 Tailwind 的 max-width 大小。选项包括 ExtraSmallSmallMediumLargeExtraLargeTwoExtraLargeThreeExtraLargeFourExtraLargeFiveExtraLargeSixExtraLargeSevenExtraLarge

use Filament\Support\Enums\MaxWidth;
 
ActionGroup::make([
// Array of actions
])
->dropdownWidth(MaxWidth::ExtraSmall)

控制下拉菜单最大高度

使用 maxHeight() 方法,下拉菜单可以设置最大高度,内容超过此高度则使用滚动条。你可以传入 CSS 长度

 
ActionGroup::make([
// Array of actions
])
->maxHeight('400px')

控制下拉菜单的 offset

使用 dropdownOffset() 方法,你可以控制下拉菜单的 offset,默认为 8

ActionGroup::make([
// Array of actions
])
->dropdownOffset(16)
Edit on GitHub

Still need help? Join our Discord community or open a GitHub discussion

上一页
模态框