silverstripe-gridfield-betterbuttons
silverstripe-gridfield-betterbuttons copied to clipboard
Adds new form actions and buttons to the GridField detail form
You need to click 2 times in the **Save** button to be able to save the record. The first time you click, just select the button but doesn't trigger the...
Hello Im using `BetterButtonNestedForm` which works perfectly. The only problem is it does not update the information shown in the CMS after submitting the form. When you use a normal...
Some CSS tweaks are required in betterbuttons to avoid a messy button alignment within the CMS headers of SilverStripe 3.3:  In SilverStripe 3.3, the "Back" button has been removed,...
I have the custom action implemented on a DataObject. I'd like to use it to refresh the DataObject edit page (under a Model Admin, that is), post some values which...
Hi @unclecheese first of all great work you do for the SilverStripe community. Thanks. Just a quick question regarding following line: https://github.com/unclecheese/silverstripe-gridfield-betterbuttons/blob/master/code/buttons/BetterButton_Publish.php#L57 Is there any reason you also check for...
For me the 'Save as new' is handy, like the one found in most office applications.
PHP Fatal error: Allowed memory size of X bytes exhausted - getPreviousRecordID and getNextRecordID
Hi, I have a table with millions of records and start to receive 'PHP Fatal error: Allowed memory size of X bytes exhausted'. After some digging I found the problem...
**To reproduce:** 1. Add `BetterButton_SaveAndPrev: true` to the `BetterButtonsActions:` `edit:` config. 2. Setup a gridfield that has pagination for multiple pages. 3. Navigate to any page other than "page 1"....
Hi! I came across some character encoding issue. First, we have an action in a DataObject subclass: ``` php $this->send_action = BetterButtonCustomAction::create('send_notification', _t('Notification.SEND', 'Send this notification')); ``` The action 'callback'...