We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Form\Element\Proxy.php
if ($this->displayEmptyItem) { $options[''] = $this->getEmptyItemLabel(); }
Should be changed to:
$options[] = array('label' => $this->getEmptyItemLabel(), 'value' => '');
Otherwise the emptyLabel wont be displayed properly and rater a NULL is inserted as item...
The text was updated successfully, but these errors were encountered:
Also, this seems to colide with emptyOption from Zend\Form\Element\Select which is adding the NULL actually...
Sorry, something went wrong.
No branches or pull requests
On Form\Element\Proxy.php
Should be changed to:
$options[] = array('label' => $this->getEmptyItemLabel(), 'value' => '');
Otherwise the emptyLabel wont be displayed properly and rater a NULL is inserted as item...
The text was updated successfully, but these errors were encountered: