ZF-6425: Zend_Dojo_View_Helper_CheckBox / FilteringSelect render Invalid XHTML attributes
Description
invalid attributes are: options listep
shouldn't be render if the Combo box isn't render as a select tag
Result now:
Suppose to be:
invalid attributes are: options listep
shouldn't be render if the Combo box isn't render as a select tag
Result now:
Suppose to be:
Comments
Posted by Roded Konforty (macpire) on 2009-11-23T22:16:41.000+0000
some sort of a solution:
-- Zend_Dojo_View_Helper_FilteringSelect and of course I'm creating my own lib class. (Cms_Dojo_View_Helper_FilteringSelect)
/** Original **/
public function filteringSelect($id, $value = null, array $params = array(), array $attribs = array(), array $options = null) { return $this->comboBox($id, $value, $params, $attribs, $options); }
/** modified **/
public function filteringSelect($id, $value = null, array $params = array(), array $attribs = array(), array $options = null) { if (isset($attribs['options'])) unset($attribs['options']); if (isset($attribs['listsep'])) unset($attribs['listsep']);
return $this->comboBox($id, $value, $params, $attribs, $options); }
Posted by Rob Allen (rob) on 2012-11-20T20:52:51.000+0000
Bulk change of all issues last updated before 1st January 2010 as "Won't Fix".
Feel free to re-open and provide a patch if you want to fix this issue.