Question is simple. How to render form with text element who have special charater ( like č ć ž š đ ) in MVC view with formRow ?
Code
echo $form->get('name')->getLabel();
displays corect characters, but when use code
echo $this->formRow($form->get('name'));
won't display label at all. Same is for values in text element. If values contain special characters ( like č ć ž š đ ) they won't be rendered. I tried to add element with code
<form name="f">
name: čćž <input type="text" name="name" value="čćž"><br>
</form>
and everthing works fine. So problem is with Zend formRow function. Is there anyone solve this ?