คำถามติดแท็ก tabs

2
สร้างแท็บและแทรกกริดที่กำหนดเองภายในแท็บ
ฉันสร้างกริดโดยทำตามบทช่วยสอนนี้ฉันต้องการสร้างกริด 4 เพิ่มเติมปัญหาคือฉันต้องเพิ่มกริดเหล่านี้ทั้งหมดลงในแท็บ จนถึงตอนนี้ฉันได้สร้างตัวควบคุมเพื่อโหลดบล็อกเช่นนี้: class Lime_Customgrid_Adminhtml_CustomController extends Mage_Adminhtml_Controller_Action { public function indexAction() { $this->_title($this->__('Custom'))->_title($this->__('Custom Lime')); $this->loadLayout(); $this->_setActiveMenu('sales/sales'); $this->_addContent($this->getLayout()->createBlock('lime_customgrid/adminhtml_table_custom')); $this->renderLayout(); } } บล็อก> Adminhtml> ตาราง> กำหนดเอง> Custom.php: <?php class Lime_Customgrid_Block_Adminhtml_Table_Custom extends Mage_Adminhtml_Block_Widget_Tabs { public function __construct() { parent::__construct(); $this->setId('custom_tabs'); // $this->setDestElementId('edit_form'); $this->setTitle(Mage::helper('lime_customgrid')->__('Custom tabs')); } protected function _beforeToHtml() { $this->addTab( 'form_listing', array( …

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.