2012-01-31 46 views
0

我已經整天用這個裝飾器,我讀了許多源通過zend框架實現dojo tab容器,但我試過它自己的結果什麼都沒有。 是有與該片斷任何misscodedojo通過zend的TabContainer呈現沒有任何東西

$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'); 

感謝之前

回答