0

I want to call two section/block within one tab. Can anyone help me to how can I get achieve this one? Please find attached screen-shot to more detail. enter image description here

Thanks in advance!

Lalit Kaushik
  • 1,062
  • 2
  • 12
  • 30

1 Answers1

0

in tab section write code only for one tab like:

<namespacename>_<modulename>_Block_Adminhtml_<modulename>_Edit_Tabs

$this->addTab('form_section', array(
                   'label' => '<tab lable>',
                   'title' => '<tab title>',
                   'content' => $this->getLayout()
     ->createBlock('<modulename>/adminhtml_<modulename>_edit_tab_form')
     ->toHtml()
         ));

and then write all code related to the two tab in this folder structure file:

<namespacename>_<modulename>_Block_Adminhtml_<modulename>_Edit_Tab_Form