2012-01-31 3 views
0

나는이 장식자를 하루 종일 엉망으로 만든다. 나는 젠드 프레임 워크를 통해 도조 탭 컨테이너를 구현하기 위해 많은 소스를 읽었지만, 아무 것도하지 않았다. 이 조각 어떤 misscode는dojo TabContainer by zend render 아무 것도하지 않는다

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

감사가

답변