Commit 5343bf7f authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

(mvc) "none" option to optional field in OptionField type

(cherry picked from commit 7f0a25a1)
parent 9c161f79
...@@ -76,6 +76,10 @@ class OptionField extends BaseField ...@@ -76,6 +76,10 @@ class OptionField extends BaseField
public function getNodeData() public function getNodeData()
{ {
$result = array (); $result = array ();
// if relation is not required, add empty option
if (!$this->internalIsRequired) {
$result[""] = array("value"=>"none", "selected" => 0);
}
foreach ($this->internalOptionList as $optKey => $optValue) { foreach ($this->internalOptionList as $optKey => $optValue) {
if ($optKey == $this->internalValue) { if ($optKey == $this->internalValue) {
$selected = 1; $selected = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment