ZF-7638: AccordionContainer::getElementHtmlTemplate()
Description
Valid html template for current UI accordion is:
$this->_elementHtmlTemplate = '
%s
%s
';
Without
<
h3> tag UI is broken with default settings... Also it would be great if you provide functionality for changing
<
h3> tag or elementHtmlTemplate (via decorators or something else).
Comments
Posted by Gregory Wilson (drakos7) on 2009-09-03T14:07:04.000+0000
Verified here on 1.9.2 as well. Please commit this simple change.
Posted by Benjamin Eberlei (beberlei) on 2009-09-09T10:32:30.000+0000
Fixed in trunk and merged into 1.9 release branch. Added way to change HTML Template:
%s%s"); $this->view->accordionPane("container1", "foo", array('title' => 'foo')); $accordion = $this->view->accordionContainer("container1", array(), array()); $this->assertEquals( 'foofoo', $accordion ); }