Admin Form is displaying on left Tab section in Magento CE 1.9.2 The Next CEO of Stack OverflowExclude a specific categoryFresh install, no plug ins, fatal error on category management pageI created a custom module ,but getting error, not able to figure out what the error is about. How to get out of this error?Magento 2:Custom Field Value in Edit Products Sectionhow can i add shipping carrier column in admin pageMagento 2 Add new field to Magento_User admin formMagento - Add customer attribute to order gridI have created one field using product form field for my price i want save my field value at product creation time from backend magento2Magento 2.3 Can't view module's front end page output?
Upgrading From a 9 Speed Sora Derailleur?
Why can't we say "I have been having a dog"?
My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?
Why did early computer designers eschew integers?
Prodigo = pro + ago?
Does Germany produce more waste than the US?
Is it a bad idea to plug the other end of ESD strap to wall ground?
Is it okay to majorly distort historical facts while writing a fiction story?
How badly should I try to prevent a user from XSSing themselves?
Can a PhD from a non-TU9 German university become a professor in a TU9 university?
Can you teleport closer to a creature you are Frightened of?
How can I prove that a state of equilibrium is unstable?
"Eavesdropping" vs "Listen in on"
How can the PCs determine if an item is a phylactery?
How did scripture get the name bible?
Is a linearly independent set whose span is dense a Schauder basis?
Is a distribution that is normal, but highly skewed, considered Gaussian?
How does a dynamic QR code work?
What does this strange code stamp on my passport mean?
How to implement Comparable so it is consistent with identity-equality
Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico
Ising model simulation
What did the word "leisure" mean in late 18th Century usage?
Can I cast Thunderwave and be at the center of its bottom face, but not be affected by it?
Admin Form is displaying on left Tab section in Magento CE 1.9.2
The Next CEO of Stack OverflowExclude a specific categoryFresh install, no plug ins, fatal error on category management pageI created a custom module ,but getting error, not able to figure out what the error is about. How to get out of this error?Magento 2:Custom Field Value in Edit Products Sectionhow can i add shipping carrier column in admin pageMagento 2 Add new field to Magento_User admin formMagento - Add customer attribute to order gridI have created one field using product form field for my price i want save my field value at product creation time from backend magento2Magento 2.3 Can't view module's front end page output?
Which i am creating form to save data in table but it is displaying it in left side in tab section in my custom module,
Grid Container
Block/Adminhtml/Grid.php
class Custom_Abc_Block_Adminhtml_Customize extends Mage_Adminhtml_Block_Widget_Grid_Container
/**
* constructor
*
* @access public
* @return void
* @author Custom
*/
public function __construct()
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_blockGroup = 'custom_abc';
$this->_headerText = Mage::helper('custom_abc')->__('Custom Abc');
$this->_addButtonLabel = Mage::helper("custom_abc")->__("Add Custom Abc");
parent::__construct();
Block/Adminhtml/Customize/Edit.php
class Custom_Abc_Block_Adminhtml_Customize_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
public function __construct()
parent::__construct();
$this->_objectId = 'id';
$this->_blockGroup = 'custom_abc';
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_updateButton(
'save',
'label',
Mage::helper('custom_abc')->__('Save Custom')
);
$this->_updateButton(
'delete',
'label',
Mage::helper('custom_abc')->__('Delete Custom')
);
$this->_addButton(
'saveandcontinue',
array(
'label' => Mage::helper('custom_abc')->__('Save And Continue Edit'),
'onclick' => 'saveAndContinueEdit()',
'class' => 'save',
),
-100
);
$this->_formScripts[] = "
function saveAndContinueEdit()
editForm.submit($('edit_form').action+'back/edit/');
";
public function getHeaderText()
if (Mage::registry('current_custom') && Mage::registry('current_custom')->getId())
return Mage::helper('custom_custom')->__(
"Edit Custom '%s'",
$this->escapeHtml(Mage::registry('current_custom')->getTin())
);
else
return Mage::helper('custom_abc')->__('Add Custom');
Block/Adminhtml/Customize/Edit/tabs.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
public function __construct()
parent::__construct();
$this->setId('custom_info_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('custom_abc')->__('Custom Information'));
protected function _beforeToHtml()
$this->addTab("form_section", array(
"label" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"title" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"content" => $this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tab_form")->toHtml(),
));
return parent::_beforeToHtml();
Block/Adminhtml/Customize/Edit/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form(array(
"id" => "edit_form",
"action" => $this->getUrl("adminhtml/abc_customize_customize/save", array("id" => $this->getRequest()->getParam("id"))),
"method" => "post",
"enctype" => "multipart/form-data",
)
);
$form->setUseContainer(true);
$this->setForm($form);
return parent::_prepareForm();
Block/Adminhtml/Customize/Edit/Tab/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form();
$this->setForm($form);
$fieldset = $form->addFieldset("custom_form", array("legend" => Mage::helper("custom_abc")->__("Add Custom Abc")));
$fieldset->addField("custom_id", "text", array(
"label" => Mage::helper("custom_abc")->__("Custom Id"),
"name" => "custom_id",
));
if (Mage::getSingleton("adminhtml/session")->getCustomData())
$form->setValues(Mage::getSingleton("adminhtml/session")->getCustomData());
Mage::getSingleton("adminhtml/session")->setCustomData(null);
elseif (Mage::registry("current_Custom"))
$form->setValues(Mage::registry("current_Custom")->getData());
return parent::_prepareForm();
controllers/Adminhtml/Abc/Customize/CustomizeController.php
class Custom_Abc_Adminhtml_Abc_Customize_CustomizeController extends Mage_Adminhtml_Controller_Action
public function indexAction()
$this->loadLayout();
$this->renderLayout();
public function newAction()
$this->_title($this->__("Custom"));
$this->_title($this->__("Custom"));
$this->_title( $this->__("New Item"));
$id = $this->getRequest()->getParam("id");
$model = Mage::getModel("custom_abc/custom")->load($id);
$data = Mage::getSingleton("adminhtml/session")->getFormData(true);
if (!empty($data))
$model->setData($data);
Mage::register("current_custom", $model);
$this->loadLayout();
$this->_setActiveMenu("custom_abc/abcd");
$this->getLayout()->getBlock("head")->setCanLoadExtJs(true);
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Manager"), Mage::helper("adminhtml")->__("Custom Manager"));
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Description"), Mage::helper("adminhtml")->__("Custom Description"));
$this->_addContent($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit"))->_addLeft($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tabs"));
$this->renderLayout();
magento-1.9 module adminform magento-1.9.2.0
|
show 4 more comments
Which i am creating form to save data in table but it is displaying it in left side in tab section in my custom module,
Grid Container
Block/Adminhtml/Grid.php
class Custom_Abc_Block_Adminhtml_Customize extends Mage_Adminhtml_Block_Widget_Grid_Container
/**
* constructor
*
* @access public
* @return void
* @author Custom
*/
public function __construct()
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_blockGroup = 'custom_abc';
$this->_headerText = Mage::helper('custom_abc')->__('Custom Abc');
$this->_addButtonLabel = Mage::helper("custom_abc")->__("Add Custom Abc");
parent::__construct();
Block/Adminhtml/Customize/Edit.php
class Custom_Abc_Block_Adminhtml_Customize_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
public function __construct()
parent::__construct();
$this->_objectId = 'id';
$this->_blockGroup = 'custom_abc';
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_updateButton(
'save',
'label',
Mage::helper('custom_abc')->__('Save Custom')
);
$this->_updateButton(
'delete',
'label',
Mage::helper('custom_abc')->__('Delete Custom')
);
$this->_addButton(
'saveandcontinue',
array(
'label' => Mage::helper('custom_abc')->__('Save And Continue Edit'),
'onclick' => 'saveAndContinueEdit()',
'class' => 'save',
),
-100
);
$this->_formScripts[] = "
function saveAndContinueEdit()
editForm.submit($('edit_form').action+'back/edit/');
";
public function getHeaderText()
if (Mage::registry('current_custom') && Mage::registry('current_custom')->getId())
return Mage::helper('custom_custom')->__(
"Edit Custom '%s'",
$this->escapeHtml(Mage::registry('current_custom')->getTin())
);
else
return Mage::helper('custom_abc')->__('Add Custom');
Block/Adminhtml/Customize/Edit/tabs.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
public function __construct()
parent::__construct();
$this->setId('custom_info_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('custom_abc')->__('Custom Information'));
protected function _beforeToHtml()
$this->addTab("form_section", array(
"label" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"title" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"content" => $this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tab_form")->toHtml(),
));
return parent::_beforeToHtml();
Block/Adminhtml/Customize/Edit/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form(array(
"id" => "edit_form",
"action" => $this->getUrl("adminhtml/abc_customize_customize/save", array("id" => $this->getRequest()->getParam("id"))),
"method" => "post",
"enctype" => "multipart/form-data",
)
);
$form->setUseContainer(true);
$this->setForm($form);
return parent::_prepareForm();
Block/Adminhtml/Customize/Edit/Tab/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form();
$this->setForm($form);
$fieldset = $form->addFieldset("custom_form", array("legend" => Mage::helper("custom_abc")->__("Add Custom Abc")));
$fieldset->addField("custom_id", "text", array(
"label" => Mage::helper("custom_abc")->__("Custom Id"),
"name" => "custom_id",
));
if (Mage::getSingleton("adminhtml/session")->getCustomData())
$form->setValues(Mage::getSingleton("adminhtml/session")->getCustomData());
Mage::getSingleton("adminhtml/session")->setCustomData(null);
elseif (Mage::registry("current_Custom"))
$form->setValues(Mage::registry("current_Custom")->getData());
return parent::_prepareForm();
controllers/Adminhtml/Abc/Customize/CustomizeController.php
class Custom_Abc_Adminhtml_Abc_Customize_CustomizeController extends Mage_Adminhtml_Controller_Action
public function indexAction()
$this->loadLayout();
$this->renderLayout();
public function newAction()
$this->_title($this->__("Custom"));
$this->_title($this->__("Custom"));
$this->_title( $this->__("New Item"));
$id = $this->getRequest()->getParam("id");
$model = Mage::getModel("custom_abc/custom")->load($id);
$data = Mage::getSingleton("adminhtml/session")->getFormData(true);
if (!empty($data))
$model->setData($data);
Mage::register("current_custom", $model);
$this->loadLayout();
$this->_setActiveMenu("custom_abc/abcd");
$this->getLayout()->getBlock("head")->setCanLoadExtJs(true);
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Manager"), Mage::helper("adminhtml")->__("Custom Manager"));
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Description"), Mage::helper("adminhtml")->__("Custom Description"));
$this->_addContent($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit"))->_addLeft($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tabs"));
$this->renderLayout();
magento-1.9 module adminform magento-1.9.2.0
add controller code too
– Qaisar Satti
May 10 '16 at 11:41
sure give me a second sir
– PRashant PUrohit
May 10 '16 at 11:48
@Qaisar Sir I have added the controller code please check
– PRashant PUrohit
May 10 '16 at 11:54
1
check the error log there is any error?
– Qaisar Satti
May 10 '16 at 12:00
1
problem with your$this->_controller = 'adminhtml_abc_customize_customize';
change to$this->_controller = 'adminhtml_customize';
– Qaisar Satti
May 10 '16 at 12:25
|
show 4 more comments
Which i am creating form to save data in table but it is displaying it in left side in tab section in my custom module,
Grid Container
Block/Adminhtml/Grid.php
class Custom_Abc_Block_Adminhtml_Customize extends Mage_Adminhtml_Block_Widget_Grid_Container
/**
* constructor
*
* @access public
* @return void
* @author Custom
*/
public function __construct()
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_blockGroup = 'custom_abc';
$this->_headerText = Mage::helper('custom_abc')->__('Custom Abc');
$this->_addButtonLabel = Mage::helper("custom_abc")->__("Add Custom Abc");
parent::__construct();
Block/Adminhtml/Customize/Edit.php
class Custom_Abc_Block_Adminhtml_Customize_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
public function __construct()
parent::__construct();
$this->_objectId = 'id';
$this->_blockGroup = 'custom_abc';
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_updateButton(
'save',
'label',
Mage::helper('custom_abc')->__('Save Custom')
);
$this->_updateButton(
'delete',
'label',
Mage::helper('custom_abc')->__('Delete Custom')
);
$this->_addButton(
'saveandcontinue',
array(
'label' => Mage::helper('custom_abc')->__('Save And Continue Edit'),
'onclick' => 'saveAndContinueEdit()',
'class' => 'save',
),
-100
);
$this->_formScripts[] = "
function saveAndContinueEdit()
editForm.submit($('edit_form').action+'back/edit/');
";
public function getHeaderText()
if (Mage::registry('current_custom') && Mage::registry('current_custom')->getId())
return Mage::helper('custom_custom')->__(
"Edit Custom '%s'",
$this->escapeHtml(Mage::registry('current_custom')->getTin())
);
else
return Mage::helper('custom_abc')->__('Add Custom');
Block/Adminhtml/Customize/Edit/tabs.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
public function __construct()
parent::__construct();
$this->setId('custom_info_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('custom_abc')->__('Custom Information'));
protected function _beforeToHtml()
$this->addTab("form_section", array(
"label" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"title" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"content" => $this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tab_form")->toHtml(),
));
return parent::_beforeToHtml();
Block/Adminhtml/Customize/Edit/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form(array(
"id" => "edit_form",
"action" => $this->getUrl("adminhtml/abc_customize_customize/save", array("id" => $this->getRequest()->getParam("id"))),
"method" => "post",
"enctype" => "multipart/form-data",
)
);
$form->setUseContainer(true);
$this->setForm($form);
return parent::_prepareForm();
Block/Adminhtml/Customize/Edit/Tab/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form();
$this->setForm($form);
$fieldset = $form->addFieldset("custom_form", array("legend" => Mage::helper("custom_abc")->__("Add Custom Abc")));
$fieldset->addField("custom_id", "text", array(
"label" => Mage::helper("custom_abc")->__("Custom Id"),
"name" => "custom_id",
));
if (Mage::getSingleton("adminhtml/session")->getCustomData())
$form->setValues(Mage::getSingleton("adminhtml/session")->getCustomData());
Mage::getSingleton("adminhtml/session")->setCustomData(null);
elseif (Mage::registry("current_Custom"))
$form->setValues(Mage::registry("current_Custom")->getData());
return parent::_prepareForm();
controllers/Adminhtml/Abc/Customize/CustomizeController.php
class Custom_Abc_Adminhtml_Abc_Customize_CustomizeController extends Mage_Adminhtml_Controller_Action
public function indexAction()
$this->loadLayout();
$this->renderLayout();
public function newAction()
$this->_title($this->__("Custom"));
$this->_title($this->__("Custom"));
$this->_title( $this->__("New Item"));
$id = $this->getRequest()->getParam("id");
$model = Mage::getModel("custom_abc/custom")->load($id);
$data = Mage::getSingleton("adminhtml/session")->getFormData(true);
if (!empty($data))
$model->setData($data);
Mage::register("current_custom", $model);
$this->loadLayout();
$this->_setActiveMenu("custom_abc/abcd");
$this->getLayout()->getBlock("head")->setCanLoadExtJs(true);
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Manager"), Mage::helper("adminhtml")->__("Custom Manager"));
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Description"), Mage::helper("adminhtml")->__("Custom Description"));
$this->_addContent($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit"))->_addLeft($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tabs"));
$this->renderLayout();
magento-1.9 module adminform magento-1.9.2.0
Which i am creating form to save data in table but it is displaying it in left side in tab section in my custom module,
Grid Container
Block/Adminhtml/Grid.php
class Custom_Abc_Block_Adminhtml_Customize extends Mage_Adminhtml_Block_Widget_Grid_Container
/**
* constructor
*
* @access public
* @return void
* @author Custom
*/
public function __construct()
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_blockGroup = 'custom_abc';
$this->_headerText = Mage::helper('custom_abc')->__('Custom Abc');
$this->_addButtonLabel = Mage::helper("custom_abc")->__("Add Custom Abc");
parent::__construct();
Block/Adminhtml/Customize/Edit.php
class Custom_Abc_Block_Adminhtml_Customize_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
public function __construct()
parent::__construct();
$this->_objectId = 'id';
$this->_blockGroup = 'custom_abc';
$this->_controller = 'adminhtml_abc_customize_customize';
$this->_updateButton(
'save',
'label',
Mage::helper('custom_abc')->__('Save Custom')
);
$this->_updateButton(
'delete',
'label',
Mage::helper('custom_abc')->__('Delete Custom')
);
$this->_addButton(
'saveandcontinue',
array(
'label' => Mage::helper('custom_abc')->__('Save And Continue Edit'),
'onclick' => 'saveAndContinueEdit()',
'class' => 'save',
),
-100
);
$this->_formScripts[] = "
function saveAndContinueEdit()
editForm.submit($('edit_form').action+'back/edit/');
";
public function getHeaderText()
if (Mage::registry('current_custom') && Mage::registry('current_custom')->getId())
return Mage::helper('custom_custom')->__(
"Edit Custom '%s'",
$this->escapeHtml(Mage::registry('current_custom')->getTin())
);
else
return Mage::helper('custom_abc')->__('Add Custom');
Block/Adminhtml/Customize/Edit/tabs.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
public function __construct()
parent::__construct();
$this->setId('custom_info_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('custom_abc')->__('Custom Information'));
protected function _beforeToHtml()
$this->addTab("form_section", array(
"label" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"title" => Mage::helper("custom_abc")->__("Custom Abc Information"),
"content" => $this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tab_form")->toHtml(),
));
return parent::_beforeToHtml();
Block/Adminhtml/Customize/Edit/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form(array(
"id" => "edit_form",
"action" => $this->getUrl("adminhtml/abc_customize_customize/save", array("id" => $this->getRequest()->getParam("id"))),
"method" => "post",
"enctype" => "multipart/form-data",
)
);
$form->setUseContainer(true);
$this->setForm($form);
return parent::_prepareForm();
Block/Adminhtml/Customize/Edit/Tab/form.php
class Custom_Abc_Block_Adminhtml_Customize_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
protected function _prepareForm()
$form = new Varien_Data_Form();
$this->setForm($form);
$fieldset = $form->addFieldset("custom_form", array("legend" => Mage::helper("custom_abc")->__("Add Custom Abc")));
$fieldset->addField("custom_id", "text", array(
"label" => Mage::helper("custom_abc")->__("Custom Id"),
"name" => "custom_id",
));
if (Mage::getSingleton("adminhtml/session")->getCustomData())
$form->setValues(Mage::getSingleton("adminhtml/session")->getCustomData());
Mage::getSingleton("adminhtml/session")->setCustomData(null);
elseif (Mage::registry("current_Custom"))
$form->setValues(Mage::registry("current_Custom")->getData());
return parent::_prepareForm();
controllers/Adminhtml/Abc/Customize/CustomizeController.php
class Custom_Abc_Adminhtml_Abc_Customize_CustomizeController extends Mage_Adminhtml_Controller_Action
public function indexAction()
$this->loadLayout();
$this->renderLayout();
public function newAction()
$this->_title($this->__("Custom"));
$this->_title($this->__("Custom"));
$this->_title( $this->__("New Item"));
$id = $this->getRequest()->getParam("id");
$model = Mage::getModel("custom_abc/custom")->load($id);
$data = Mage::getSingleton("adminhtml/session")->getFormData(true);
if (!empty($data))
$model->setData($data);
Mage::register("current_custom", $model);
$this->loadLayout();
$this->_setActiveMenu("custom_abc/abcd");
$this->getLayout()->getBlock("head")->setCanLoadExtJs(true);
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Manager"), Mage::helper("adminhtml")->__("Custom Manager"));
$this->_addBreadcrumb(Mage::helper("adminhtml")->__("Custom Description"), Mage::helper("adminhtml")->__("Custom Description"));
$this->_addContent($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit"))->_addLeft($this->getLayout()->createBlock("custom_abc/adminhtml_customize_edit_tabs"));
$this->renderLayout();
magento-1.9 module adminform magento-1.9.2.0
magento-1.9 module adminform magento-1.9.2.0
edited May 10 '16 at 12:40
Qaisar Satti
27k1256109
27k1256109
asked May 10 '16 at 10:56
PRashant PUrohitPRashant PUrohit
213419
213419
add controller code too
– Qaisar Satti
May 10 '16 at 11:41
sure give me a second sir
– PRashant PUrohit
May 10 '16 at 11:48
@Qaisar Sir I have added the controller code please check
– PRashant PUrohit
May 10 '16 at 11:54
1
check the error log there is any error?
– Qaisar Satti
May 10 '16 at 12:00
1
problem with your$this->_controller = 'adminhtml_abc_customize_customize';
change to$this->_controller = 'adminhtml_customize';
– Qaisar Satti
May 10 '16 at 12:25
|
show 4 more comments
add controller code too
– Qaisar Satti
May 10 '16 at 11:41
sure give me a second sir
– PRashant PUrohit
May 10 '16 at 11:48
@Qaisar Sir I have added the controller code please check
– PRashant PUrohit
May 10 '16 at 11:54
1
check the error log there is any error?
– Qaisar Satti
May 10 '16 at 12:00
1
problem with your$this->_controller = 'adminhtml_abc_customize_customize';
change to$this->_controller = 'adminhtml_customize';
– Qaisar Satti
May 10 '16 at 12:25
add controller code too
– Qaisar Satti
May 10 '16 at 11:41
add controller code too
– Qaisar Satti
May 10 '16 at 11:41
sure give me a second sir
– PRashant PUrohit
May 10 '16 at 11:48
sure give me a second sir
– PRashant PUrohit
May 10 '16 at 11:48
@Qaisar Sir I have added the controller code please check
– PRashant PUrohit
May 10 '16 at 11:54
@Qaisar Sir I have added the controller code please check
– PRashant PUrohit
May 10 '16 at 11:54
1
1
check the error log there is any error?
– Qaisar Satti
May 10 '16 at 12:00
check the error log there is any error?
– Qaisar Satti
May 10 '16 at 12:00
1
1
problem with your
$this->_controller = 'adminhtml_abc_customize_customize';
change to $this->_controller = 'adminhtml_customize';
– Qaisar Satti
May 10 '16 at 12:25
problem with your
$this->_controller = 'adminhtml_abc_customize_customize';
change to $this->_controller = 'adminhtml_customize';
– Qaisar Satti
May 10 '16 at 12:25
|
show 4 more comments
1 Answer
1
active
oldest
votes
problem with your $this->_controller = 'adminhtml_abc_customize_customize';
change to $this->_controller = 'adminhtml_customize';
add a comment |
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f114708%2fadmin-form-is-displaying-on-left-tab-section-in-magento-ce-1-9-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
problem with your $this->_controller = 'adminhtml_abc_customize_customize';
change to $this->_controller = 'adminhtml_customize';
add a comment |
problem with your $this->_controller = 'adminhtml_abc_customize_customize';
change to $this->_controller = 'adminhtml_customize';
add a comment |
problem with your $this->_controller = 'adminhtml_abc_customize_customize';
change to $this->_controller = 'adminhtml_customize';
problem with your $this->_controller = 'adminhtml_abc_customize_customize';
change to $this->_controller = 'adminhtml_customize';
answered May 10 '16 at 12:33
Qaisar SattiQaisar Satti
27k1256109
27k1256109
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f114708%2fadmin-form-is-displaying-on-left-tab-section-in-magento-ce-1-9-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
add controller code too
– Qaisar Satti
May 10 '16 at 11:41
sure give me a second sir
– PRashant PUrohit
May 10 '16 at 11:48
@Qaisar Sir I have added the controller code please check
– PRashant PUrohit
May 10 '16 at 11:54
1
check the error log there is any error?
– Qaisar Satti
May 10 '16 at 12:00
1
problem with your
$this->_controller = 'adminhtml_abc_customize_customize';
change to$this->_controller = 'adminhtml_customize';
– Qaisar Satti
May 10 '16 at 12:25