У меня есть следующий Zend_Form_Element:
$imginstructions = "Some description";
$img = $this->createElement('select','img');
$img->setAttrib('class', 'image-select');
$imgdecorator = $img->getDecorator('Description');
$imgdecorator->setOption('escape', false);
$img->setLabel('Image:')
->setRequired(true)
->addMultiOptions($images)
->setValue('')
->setDescription($imginstructions)
->addErrorMessage('You must select an image');
$img->size = 5;
$this->addElement($img);
Описание должно появиться рядом с полем выбора.
Проблема заключается в следующем: при возникновении ошибки отображаемый html изменяется, поэтому описание отображается под окном выбора, а не рядом с ним.
HTML отображается перед выдачей ошибки:
<dd id="img-element">
<select size="5" class="image-select" id="img" name="img" style="display: none;">
...........options..............
</select>
<p class="description">Some Description</p></dd>
HTML отображается после выдачи ошибки:
<dd id="img-element">
<select size="5" class="image-select" id="img" name="img" style="display: none;">
...........options..............
</select>
<ul class="errors"><li>You must select an image</li></ul>
<p class="description">Some Description</p></dd>
Есть ли способ заставить сообщение об ошибке добавляться в качестве последнего элемента в дереве DOM для элемента dd?
Что-то вроде:
<dd id="img-element">
<select size="5" class="image-select" id="img" name="img" style="display: none;">
...........options..............
</select>
<p class="description">Some Description</p>
<ul class="errors"><li>You must select an image</li></ul></dd>
так что ul находится в конце дерева dd DOM.
Спасибо, спасибо, что нашли время ответить на этот вопрос!