Allows you to create a CMS button for creating and editing a single related object. It is actually a grid field, but just looks like a button.
In Warehouse.php context:
public function getCMSFields() {
$fields = parent::getCMSFields();
if($this->Address()->exists()){
$fields->addFieldsToTab("Root.Main", array(
ReadonlyField::create("add", "Address", $this->Address()->toString())
));
}
$fields->removeByName("AddressID");
$fields->addFieldToTab("Root.Main",
HasOneButtonField::create("Address", "Address", $this) //here!
);
return $fields;
}
You must pass through the parent context ($this), so that the has_one relationship can be set by the GridFieldDetailForm
.
The field name must match the has_one relationship name.