4.10.40-beta
butschster
released this
24 Feb 13:26
·
2686 commits
to development
since this release
- Add more flexibility for table header column and table control column
Header column customization
$display->setColumns([
...
$fullNameColumn = AdminColumn::link('fullName')->setLabel('Name'),
...
]);
$fullNameColumn->getHeader()->setAttribute('class', 'bg-primary')->setTitle('Full name');
Control column customization
$display = AdminDisplay::table();
$display->getControlColumn()->getHeader()->setTitle('Control')->setAttribute('class', 'bg-black');
// or
$display->setControlColumn(new AdminColumn::customControl(...));
- Fixed styles for table control buttons
- Fixed form panel elements initialization
- Fixed tabbed display rendering
- Removed unused media library from common.less
- Form buttons grouped and moved to the dropdown menu.