Hi , Now I Face Big Problem . I Try To Create Custom Render To Select List I Try To Build Countries List With Image OF Country Flag And Country Name But When I Try Add Image Tag Inside Option Tag , But Phalcon Strip It and Only Show Text Here 's My Code
public function render($attributes = null)
{
$html = "<select id='" . $this->getName() ."' name='" . $this->getName() . "'>";
foreach($this->getAttributes () as $option)
{
$html .= "<option value='" . $option['country_code']. "'>";
$html .= tag::image(array('frontend/images/country_flags/' . $option['flag']));
$html .= "</option>";
}
$html .="</select>";
return $html;
}