in my Zend Framework App i wanna use Dojo Form.
I have problem with encoding i guess.
when i add element into form with label containing some specila chars like éíá it works but it doenst show any label!
$this->addElement ( new Zend_Dojo_Form_Element_TextBox ( array (
'name' => 'TextBox',
'label' => 'áíé',
'required' => true,
'InvalidMessage' => 'Invalid',
'trim' => true,
'propercase' => true ) ) );
Could anyone help me?
Problem solved,
i´ve saved file with same encoding(utf8) (previously was win1250)