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.
Thanks in advance!
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.
Thanks in advance!
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