mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #9200 from open-sausages/pulls/4.4.3/consistent-actions
FIX make the grid field actions consistent to what they look like on pages
This commit is contained in:
commit
a2a202c016
@ -350,15 +350,23 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
|||||||
{
|
{
|
||||||
$actions = FieldList::create();
|
$actions = FieldList::create();
|
||||||
|
|
||||||
|
$majorActions = CompositeField::create()->setName('MajorActions');
|
||||||
|
$majorActions->setFieldHolderTemplate(get_class($majorActions) . '_holder_buttongroup');
|
||||||
|
$actions->push($majorActions);
|
||||||
|
|
||||||
if ($this->record->ID !== 0) { // existing record
|
if ($this->record->ID !== 0) { // existing record
|
||||||
if ($this->record->canEdit()) {
|
if ($this->record->canEdit()) {
|
||||||
$actions->push(FormAction::create('doSave', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Save', 'Save'))
|
$noChangesClasses = 'btn-outline-primary font-icon-tick';
|
||||||
|
$majorActions->push(FormAction::create('doSave', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Save', 'Save'))
|
||||||
|
->addExtraClass($noChangesClasses)
|
||||||
|
->setAttribute('data-btn-alternate-add', 'btn-primary font-icon-save')
|
||||||
|
->setAttribute('data-btn-alternate-remove', $noChangesClasses)
|
||||||
->setUseButtonTag(true)
|
->setUseButtonTag(true)
|
||||||
->addExtraClass('btn-primary font-icon-save'));
|
->setAttribute('data-text-alternate', _t('SilverStripe\\CMS\\Controllers\\CMSMain.SAVEDRAFT', 'Save')));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->record->canDelete()) {
|
if ($this->record->canDelete()) {
|
||||||
$actions->push(FormAction::create('doDelete', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Delete', 'Delete'))
|
$actions->insertAfter('MajorActions', FormAction::create('doDelete', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Delete', 'Delete'))
|
||||||
->setUseButtonTag(true)
|
->setUseButtonTag(true)
|
||||||
->addExtraClass('btn-outline-danger btn-hide-outline font-icon-trash-bin action--delete'));
|
->addExtraClass('btn-outline-danger btn-hide-outline font-icon-trash-bin action--delete'));
|
||||||
}
|
}
|
||||||
@ -370,7 +378,7 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
|||||||
$actions->push($this->getRightGroupField());
|
$actions->push($this->getRightGroupField());
|
||||||
} else { // adding new record
|
} else { // adding new record
|
||||||
//Change the Save label to 'Create'
|
//Change the Save label to 'Create'
|
||||||
$actions->push(FormAction::create('doSave', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Create', 'Create'))
|
$majorActions->push(FormAction::create('doSave', _t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.Create', 'Create'))
|
||||||
->setUseButtonTag(true)
|
->setUseButtonTag(true)
|
||||||
->addExtraClass('btn-primary font-icon-plus-thin'));
|
->addExtraClass('btn-primary font-icon-plus-thin'));
|
||||||
|
|
||||||
@ -384,7 +392,7 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
|||||||
$oneLevelUp->Link, // url
|
$oneLevelUp->Link, // url
|
||||||
_t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.CancelBtn', 'Cancel') // label
|
_t('SilverStripe\\Forms\\GridField\\GridFieldDetailForm.CancelBtn', 'Cancel') // label
|
||||||
);
|
);
|
||||||
$actions->push(new LiteralField('cancelbutton', $text));
|
$actions->insertAfter('MajorActions', new LiteralField('cancelbutton', $text));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user