dojoTabContainer通过zend渲染没有任何东西



我整天都在用这个装饰器,我读了很多通过zend框架实现dojo选项卡容器的源代码,但我自己尝试了,结果一无所获。这个片段有错码吗

$form = new Zend_Dojo_Form();
$form->setName('name')
    ->setLegend('legend')
    ;
$form->setDecorators(array(
            'formElements',
            array('tabContainer', array(
                'id'          => 'tabContainer',
                'style'       => 'width: 600px; height: 500px;',
                'dijitParams' => array(
                'tabPosition' => 'top'
                    ),
                )),
                'DijitForm',
));
$a = new Zend_Dojo_Form_Element_TimeTextBox('time');
$a->setLabel('label');
$sf = new Zend_Dojo_Form_SubForm();
$sf->setDecorators(array(
    'FormElements',
    array('HtmlTag', array('tag' => 'dl')),
    'ContentPane',
    ));
$sf->addElement($a);
$form->addSubForm($sf, 'subform');

感谢

这个?

还是这个?

Zend中的Dojo视图助手使用captureStart()和captureEnd()

相关内容

  • 没有找到相关文章

最新更新