We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada41e1 commit fc3f258Copy full SHA for fc3f258
lib/internal/Magento/Framework/Data/Form/Element/Multiselect.php
@@ -59,6 +59,10 @@ public function getElementHtml()
59
if ($this->getCanBeEmpty()) {
60
$html .= '<input type="hidden" name="' . parent::getName() . '" value="" />';
61
}
62
+ if (!empty($this->_data['disabled'])) {
63
+ $html .= '<input type="hidden" name="' . parent::getName() . '_disabled" value="" />';
64
+ }
65
+
66
$html .= '<select id="' . $this->getHtmlId() . '" name="' . $this->getName() . '" ' . $this->serialize(
67
$this->getHtmlAttributes()
68
) . $this->_getUiId() . ' multiple="multiple">' . "\n";
0 commit comments