zend-form icon indicating copy to clipboard operation
zend-form copied to clipboard

Form component from Zend Framework

Results 52 zend-form issues
Sort by recently updated
recently updated
newest added

If a DateSelect element has it's value set to an empty string, due to the behaviour of php's date time object; the element is set to today's date. See offending...

bug
question
BC Break

## Description of the problem: For example, say we have a text field that is used to store float numbers and our application is in french (yes, it's my native...

When calling $select->setValue(array('1.1')), selected values French and Japanese, but Japanese is incorrect value ``` php use Zend\Form\Element; use Zend\Form\Form; $select = new Element\Select('language'); $select->setLabel('Which is your mother tongue?'); $select->setValueOptions(array( '1.1'...

bug

Say we have a field containing a float number in french (with a comma as decimal separator). If the user enter `4,5` (a valid value) and submits the form but...

This is a follow-on from #32. You cannot use the view helpers without requiring zend-view. This is because `Zend\Form\View\Helper\AbstractHelper` extends `Zend\I18n\View\Helper\AbstractTranslatorHelper`, which in turn extends `Zend\View\Helper\AbstractHelper`. I would like to...

I use a form to validate the input of my json rest api, but an exception occurs when i get a value that is not an array for a fieldset....

I've narrowed the problem down the the Zend-code dependency. I don't know if there is any way we can fix this for PHP 7; perhaps a documentation update warning of...

bug

This is a bc break but will improve performance. The form element manager is currently registered as a services listener, which means it can interrogate Module classes for form element...

Hi, I'm using zend-form as a standalone library (in a Symfony2 project), and I realize that since [this commit](https://github.com/zendframework/zend-form/commit/12caaebd4a5ea16cd17aca9b754dc20d1331fcd4) (introduced in v2.8.2) there is a [new autoload file](https://github.com/zendframework/zend-form/blob/12caaebd4a5ea16cd17aca9b754dc20d1331fcd4/autoload/formElementManagerPolyfill.php) which creates...

bug

Hi, Zend Framework updated to the version 2.5, then came to me mainly problems with collections. At an earlier version 2.2.x all it worked normally but now I have a...