3
its not really a bug but a snippet forgotten - which is the same thing :p -
this the render function for formselect.php
function render()
{
$ele_name = $this->getName();
$ele_title = $this->getTitle();
$ele_value = $this->getValue();
$ele_options = $this->getOptions();
$ret = '';
return $ret;
}
the id , name and title are added to the select but not the class
so it should just add some little changes
function render()
{
$ele_name = $this->getName();
$ele_class = $this->getClass();
$ele_title = $this->getTitle();
$ele_value = $this->getValue();
$ele_options = $this->getOptions();
$ret = '';
return $ret;
}
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.