Hello, This is my code to display a textarea in zendform. I show fine textarea with desired rows but if i set attribute for cols it does not add columns in it. Code is this:
$element = $this->CreateElement('textarea', 'description');
$element->setAttrib('rows', '4');
$element->setAttrib('cols', '8');
$element->setLabel('Comment');