Questions tagged [adminhtml]

adminhtml is a directory in Magento which contains a design file related to the admin interface of Magento.

adminhtml is a directory in Magento which contains a design file related to the admin interface of Magento. We have two such directories in Magento.

  1. Under /app/design directory in Magento. It contains a design file related to the admin interface of your Magento.

  2. skin/adminhtml: This directory contains CSS, js, and images of the admin theme of Magento.

172 questions
13
votes
1 answer

Set Default Values for Status,Tax Class in Magento

How do I set "Enabled","None" as default value for "Status","Tax class" fields in admin?
blakcaps
  • 2,647
  • 10
  • 46
  • 71
10
votes
3 answers

404 error in Custom Magento configuration in admin

I'm developing a custom SMS module in Magento 1.6. I've setup the system.xml file to manage the related custom configuration fields. The menu entry shows up, but when I click it, a 404 error page is shown instead of the expected configuration fields…
Sankar Subburaj
  • 4,992
  • 12
  • 48
  • 79
6
votes
1 answer

Magento Grid Container Block not loading grid

I just set up an admin module with a grid view using the module creator, and it works great, but now I need to add another grid view within the same module. I copied and renamed all the files relevant to the grid view(controllers and block files,…
Geoff
  • 747
  • 3
  • 11
  • 16
6
votes
3 answers

How do I use the 'concat' type in the addColumn() method when building a grid?

Mage/Adminhtml/Widget/Grid/Column/Renderer/Concat.php -- can someone please provide an example of its usage? For instance, can it be used in place of: $this->addColumn('order_item', array( 'header'=> $this->__('Order # (Item #)'), 'sortable'=>…
monkeygod
  • 353
  • 2
  • 12
5
votes
2 answers

Dynamically changing Magento's adminhtml menu option

I am working on a "for fun" project that I hope to release as a "for fun" open source project. I've built an Arduino web-connected order notifier and I am building up the Magento adminhtml interface side of it. This might seem overly complicated for…
Kevin Mitchell
  • 325
  • 1
  • 5
  • 13
5
votes
1 answer

Magento grid column sorting

Once upon a time I tried creating some custom columns. I created the entire XML structure like I should have. I created controllers. I even created the custom grid controller. After creating my custom grid, I figured the columns would sort. I…
Nate H
  • 322
  • 1
  • 5
  • 20
4
votes
1 answer

how to use ajax on magento's default adminhtml form.php?

$event = $fieldset->addField('parent_id', 'select', array( 'label' => Mage::helper('gallery')->__('Parent'), 'required' => true, 'name'=>'parent_id', 'values'=>$ac, 'onchange'=>'CheckSelectedItem()', )); …
Hardik Patel
  • 41
  • 1
  • 2
4
votes
4 answers

Reorder magento admin System/Configuration left nav

a simple question. In magento, when going to System / Configuration there are some main tabs in left navigation. General, Catalog, Customer, Sales, Advanced, etc. I wonder what xml set the order for those? I would love to have Advanced somewhere on…
Ovidiu
  • 2,921
  • 5
  • 28
  • 36
4
votes
3 answers

Magento - How to add a custom render to a custom column in the orders grid?

For a Magento website, I would like to show custom options in the orders grid in the backoffice. Currently, I've successfully added a custom column to the grid with the help of this guide and this guide, using a module to avoid to rewrite the core…
NaoDav
  • 66
  • 1
  • 4
4
votes
4 answers

How to change url of back button in grid form in admin of magento?

I am working Magento community edition 1.7 version. I have a grid in admin panel. Now when I click on this URL it open a form with two tabs in left sidebar. When I click on second tab it show a grid in its right side. Then I click on a row of this…
Neeraj Garg
  • 695
  • 3
  • 17
  • 38
4
votes
1 answer

How to add new column to order grid using observers?

Could you help me? I'm trying to add new column to the order grid in admin using observers. there is my config.xml
Nick
  • 602
  • 9
  • 22
3
votes
2 answers

Magento doesn't save value on 'save'

I have a custom module that adds a field to an element in
Jack
  • 185
  • 4
  • 12
3
votes
1 answer

Magento: Add Tab to Admin Order Details Page

I have created a custom Magento module which extends the core sales order functionality with some custom user input. After an order has been placed I would like to display this data in a custom tab on the order detail page of the admin area. I have…
Zac Seth
  • 2,742
  • 5
  • 37
  • 56
3
votes
1 answer

Magento admin grid sending data from Action to Controller

I'm trying to write a custom action to run off of an admin grid that I have built. Is it possible to send a value from a column in the grid to the controller via either get or post? I've tried googling, but I cannot find a proper explanation for…
Geoff
  • 747
  • 3
  • 11
  • 16
3
votes
2 answers

adminhtml/session in Magento addError not showing after redirect

I am working on a custom magento admin module with grids. When you add a new entry, I perform custom validation and throw an error (when & if it occurs) using Mage::getSingleton('adminhtml/session')->addError() method. The error message I set does…
Latheesan
  • 23,247
  • 32
  • 107
  • 201
1
2 3
11 12