The adminhtml tag has no wiki summary.
4
votes
1answer
236 views
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
<adminhtml>
<events>
...
4
votes
1answer
404 views
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 ...
3
votes
1answer
2k views
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 ...
3
votes
3answers
356 views
overwrite adminhtml sales_order_create model
I am unable to overwrite the adminhtml model, can anyone help me out where I did wrong...
module XML
<?xml version="1.0"?>
<config>
<modules>
...
3
votes
3answers
566 views
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 ...
2
votes
2answers
3k views
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 ...
2
votes
1answer
3k views
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 ...
2
votes
1answer
2k views
Magento Grid : Better way of using addColumn Actions?
This function sets up the Magento Grid to display a list of filenames with a corresponding 'Delete' action.
The problem is the Delete action never passes the parameter, 'filename.' (See ...
2
votes
2answers
1k views
Magento pull product attributes into Adminhtml order item grid
I'm creating a custom module for a specific function in the admin of Magento. Within the Adminhtml grid, I am pulling in line order items, but also need to pull in data specific to each product as it ...
2
votes
1answer
111 views
Appropriate/best practice way to execute some PHP unrelated to database when a module is first installed?
I'm creating a module that requires a few things to be done (once only) when the module is installed. There may be a number of things that need to be done, but the most basic thing that I need to do ...
2
votes
1answer
3k views
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 ...
2
votes
1answer
64 views
Magento: Trying to overwrite Mage_Adminhtml_Block_Widget_Form
I'm trying to overwrite Mage_Adminhtml_Block_Widget_Form in my extension but i can't seem to get it to work.
my config looks like this
<global>
<blocks>
<adminhtml>
...
2
votes
1answer
384 views
Magento custom collection has duplicated data
This code will use a custom collection and print a listing of files, using a Grid, through Magento's backend(adminhtml) for either downloading or deletion.
The problem is the collection gets ...
2
votes
2answers
648 views
Magento Email Templates: Blocks not rendering from adminhtml
I fear I've stumbled into unknown Magento territory. I have exhausted what's left of my Googling abilities and have come up short, so I thought I'd try my luck here.
Our platform is Magento ...
1
vote
1answer
2k views
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 ...
1
vote
1answer
881 views
Problems with adding new tab to customer view in magento backend
I'm very new to Magento and I'm trying to add a new tab to the customer view of Magento backend.
I have made a new extension/module for it. Here are some extracts of my etc/config.xml:
...
1
vote
1answer
2k views
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,
...
1
vote
1answer
411 views
Custom Magento Extension Enable and Disable not working
I am simply trying to build an extension that if it is enabled it will override the original cart/shipping.phtml file with my own template file..
When I click on Enable it does not enable the ...
1
vote
1answer
826 views
My custom Magento Extension is getting a 404 page not found error
First let me say that I have disabled and cleared the cache and logged out and back in again. However, I am still getting this error.
Second, let me explain what I am trying to do. BTW, this is my ...
1
vote
1answer
343 views
Admin route in custom modules
All stock magento modules have URL path in backend which has 'admin' (by default) part.
However I was not able to achieve that for a custom module. Is this not possible or done on a purpose?
Thanks
1
vote
1answer
35 views
Displaying my Bloc in mutiple “zone”?
I am working on a Slider extension for Magento, I want to be able to display my slider in one of this positions : top_left, top_right, top_center, bottom_left/right/center ! and be able to choose this ...
1
vote
2answers
344 views
How to add my extension to Magento Admin Menu Sidebar?
I am working on creating my very first community extension. It is a very simple one and is already working. I would like to learn how to add my extension to the admin area that will allow the customer ...
1
vote
1answer
237 views
Magento - Custom CSS in Admin Navigation
I have a question, and have not managed to find a solution yet. I have a module. For this module, i have an entry in the Admin top nav menu. I would like to customized from this :
to this :
Is ...
1
vote
1answer
691 views
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?
1
vote
2answers
271 views
Magento - overriden grid with new column does not populate new value for row
Extending core functionality, adding new column. Grid gets built, query builds w/ data but the when the row is generated it fails to add populate the 'visibility' cell in the row. Thoughts?
EDIT: ...
1
vote
1answer
2k views
Magento addField doesn't use 'value'
Setting up a custom form. Magento doesn't use the 'value' attribute of addField. Suggestions?
Code:
$form = new Varien_Data_Form(array(
'id' => 'edit_form',
'action' => ...
1
vote
1answer
830 views
magento custom admin report filter
I built a custom report pretty much following this guide http://www.summasolutions.net/blogposts/custom-reports-magento. However I also want the ability to add a filter; like the one located @ ...
1
vote
2answers
199 views
how to do filtering work by drop down of admin module in magento ?(e.g status----> enabled)
want to do filtering of product name like status is done.(the product [Samsung,alien] these values are displayed randomly from database,i don't know where its code is written and on which logic its ...
1
vote
1answer
143 views
Magento adminhtml submenu not working
This problem is driving us nuts, already couple of hours and nothing, I'm getting a 404 error when trying to access the second submenu, the Keywords one. I'm sure the error should be either on the ...
1
vote
2answers
2k views
whitespace problem magento admin html grid renderer
I have rewritten the app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php
with app/code/local/Mage/Adminhtml/Block/Sales/Order/Grid.php
& have created a renderer to display customer's email ...
1
vote
1answer
1k views
Magento grid view using custom collection
I'm currently writing an EPOS integration for Magento. When an order is made, it's ID is placed in a queuefile. Once a minute, a cron looks at the queue, fires the top order to the EPOS web api and ...
1
vote
0answers
518 views
implementing Magento EAV with proper grid & forms in admin panel
I am trying to implement an EAV CRUD module in magento. My module name is Pincodes.
It should be just like the Attribute Management under Admin panel >> Catalog >> Attributes >> Manage Attribute
So ...
0
votes
2answers
960 views
Magento: Overload Adminhtml/Productcontroller’s saveAction method won’t work …?
I want to overload the saveAction method from the core/Mage/Adminhtml/controllers/Catalog/ProductController.php and it won’t work - I have now searched and tried for a complete day :(
Background: I ...
0
votes
1answer
1k views
What is the proper way to add a custom dashboard “box” in the Magento backend without editing default templates?
I am working on creating what I hope one day will be a publicly available Magento extension (this part I mention because it's important to me that I do the "right thing" here). One of the things I ...
0
votes
1answer
278 views
magento tabbed backend like catalog/product for custom entity
I want to write a module with a custom entity. In the backend it shall look like the backend from products (tabs on the left, forms on the right).
I tried many variants and inspected/copied many ...
0
votes
2answers
24 views
Why does magento catch wrong event from admin section?
I have set up a default 'no modifications' copy of magento on a local machine to replicate the results on our production machine.
When I try to catch the event 'adminhtml_customer_save_after' in a ...
0
votes
2answers
24 views
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(
...
0
votes
1answer
293 views
Get in magento a transactional email template from adminhtml
Im trying to send a transactional email in my modules controller and configure it in the magentos backend.
Here is my try:
in my config.xml
under config/global
<template>
...
0
votes
1answer
185 views
How to add a SaveandContinueEdit Button to my form?
I am working on a new Magento extension, in my Adminhtml form I want to add the button "saveAndContinueEdit"
I've added this code to my Edit.php file.
...
0
votes
1answer
443 views
Filtering the Grid in Magento
I have made a custom grid in magento that displays saved video urls and its working. But i want to show only records where the 'urlid' is for example'3' . Here is my _prepareCollection function
...
0
votes
2answers
647 views
adding blocks to magento adminhtml modules
Im currently trying to simply add a block to a custom Adminhtml module. i am able to display the content of the block but it renders right at the top of the page with a grey background, and then the ...
0
votes
2answers
312 views
Magento doesn save value on 'save'
I have a custom module that adds a field to an element in
<?php
class NS_MN_Block_Cms_Page_Edit_Tab_Main extends Mage_Adminhtml_Block_Cms_Page_Edit_Tab_Main
{
public function _prepareForm()
{
...
0
votes
2answers
971 views
Magento custom module adminhtml/base/default
My custom module is generating this error on the system log everytime I try to view the indexController.
2012-01-25T17:23:08+00:00 CRIT (2): Not valid template ...
0
votes
4answers
337 views
Magento Adminhtml override module not working
Stemming from my last question, I am stumped trying to do an override. I am doing exactly what MudithaE's answer here did, too.
I want to implement my own _prepareColumns() as found in the file ...
0
votes
1answer
110 views
Trying to extend getName in my Magento Custom Extension?
Quick overview even though I think the below code will explain itself. I am wanting to extend the getName() public function and truncate it. However my code does nothing and does not even throw an ...
0
votes
1answer
122 views
404 Error on Magento Adminhtml Module
I've created a fairly straight forward module for mageneto with an administration section.
The Admin section works perfectly except that I get a 404 error when I hit 'Add Item'.
What is particularly ...
0
votes
1answer
170 views
Edit header text according to data stored on Mage::registry
I have all the necessary files and structures in order to handle CRUD operations on a table I have added on the database. On the Edit.php file I have the getHeaderText() function that modifies the ...
0
votes
1answer
446 views
How to include Magento Image Gallery in a Custom Module Backend? (solved)
This discussion gives me many hints:
how does the Image Gallery form get populated in Magento Admin
But it is still hard for me to figure out how to do it.
Any help is really wellcome
Thanks,
...
0
votes
1answer
130 views
Magento addAttribute duplicate after delete of core_resource entry
if i delete core_resource.code='my_setup_module' and rerun magento, everything in my sql/ files duplicates. is there a way to prevent this? (that's it. the rest of this is buffer material so ...
0
votes
1answer
312 views
Magento: Price Field in Adminhtml product form
I would like to add a price field into my admin form under my product edit page, but I cannot add a “price” type into my fieldset.
$fieldset->addField($attribute->getAttributeCode(), 'price', ...