1

我有一个带有一些元素的 zend 表单,包括一个复选框。看起来很正常:

checkbox label []

我想在右侧添加一个链接,使其看起来像这样:

checkbox label [] thelink

我尝试了以下方法,但不是将描述与复选框水平对齐,而是将其置于其下方:

$boolean->setDescription('desc');
        $boolean->setDecorators(array(
            'ViewHelper',
            'Description',
            'Errors',
            array('HtmlTag', array('tag' => 'dd')),
            array('Label', array('tag' => 'dt')),
        ));

我是 Zend Forms 的初学者。知道我该如何实现吗?

谢谢

4

1 回答 1

2

知道了!

我是这样做的:

  $boolean->setDescription('description');
        $boolean->setDecorators(array(
            'ViewHelper',
            'Description',
            'Errors',
            array('HtmlTag', array('tag' => 'dd')),
            array('Label', array('tag' => 'dt')),
            array('Description', array('escape' => false, 'tag' => '', 'placement' => 'append')),
        ));
于 2012-12-19T15:22:47.923 回答