Hi, I’m trying to add a title attribute to the input element created this way
$this->createElement('text', 'tv_id', array(
'label' => 'Tv Id',
'class' => 'htmlfivify_number',
'readonly' => 'True',
'required' => False,
'filters' => array('Int'),
'validators' => array('Digits', 'Int')
));
I tried adding a 'title' = "some title text' in the options but it didn’t show up,
I want to add this title attribute so that it shows up as a tooltip when the user mouse overs an input.
How can this be achieved?
Should get you your title.
From the ZF manual
so you could also do
$element->title = 'My title text'