-
Notifications
You must be signed in to change notification settings - Fork 87
formCollection View Helper doesn't render name #86
Comments
Having a "name" attribute can be really useful -- it was added to the HTML5 standard for a reason. Being unable to use it is a real bummer, and the way the helper is implemented, there is no other choice than reimplementing it from scratch if the attribute is needed. What about checking the doctype via the "Doctype" helper, or simply adding a flag? |
This part needs to be changed zend-form/src/View/Helper/FormCollection.php Lines 123 to 126 in 4419eef
And the property protected $validTagAttributes = [
'name' => true,
]; |
Unit test for this case can be: public function testRenderCollectionWithNameAttributeAndDoctypeHtml5()
{
$this->helper->setDoctype(Doctype::HTML5);
$form = $this->getForm();
$collection = $form->get('colors');
$collection->setAttribute('name', 'foo');
$markup = $this->helper->render($collection);
$this->assertContains('<fieldset name="foo">', $markup);
}
public function testRenderCollectionWithNameAttributeAndDoctypeXhtml1()
{
$this->helper->setDoctype(Doctype::XHTML1_STRICT);
$form = $this->getForm();
$collection = $form->get('colors');
$collection->setAttribute('name', 'foo');
$markup = $this->helper->render($collection);
$this->assertContains('<fieldset>', $markup);
} |
createAttributesString() already removes invalid attributes, via prepareAttributes(). There should be no need to hardcode removal of the "name" attribute. #194 added methods to declare valid attributes, so we could add the "name" attribute manually if it wasn't forcefully removed. However, I don't see the point in disallowing the attribute in the first place, other than compliance with doctypes other than HTML5. This only adds confusion when the attribute is ignored. Non-HTML5 developers may choose not to use it. Or allow/disallow it based on the doctype. |
It is included in the current code, therefore I wrote: "This part needs to be changed".
Not needed here.
This is the current behaviour of the entire component and there is no reason to change that. |
This repository has been closed and moved to laminas/laminas-form; a new issue has been opened at laminas/laminas-form#42. |
This issue has been moved from the
zendframework
repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.htmlOriginal Issue: https://api.github.com/repos/zendframework/zendframework/issues/7687
User: @gregGit
Created On: 2016-03-14T16:20:39Z
Updated At: 2016-04-13T07:48:07Z
Body
When using form view helper, the formCollection view helper is used to render fieldset.
But form some reason that i don't understand this view helper doesn't set the name attribute in the fieldset (unset($attributes['name']); in the render Method).
I belive name is a valid html attributes for fieldset i don't understand why ZF2 never render this tag in a fieldset, and it can be usefull to have it in the DOM.
For test create an action like this :
and just " echo $this->form($form)" in the view.
No attribute name for the fieldset is rendered.
Comment
User: @froschdesign
Created On: 2016-04-13T07:48:07Z
Updated At: 2016-04-13T07:48:07Z
Body
It's only allowed in HTML5.
The text was updated successfully, but these errors were encountered: