Tagged Questions
0
votes
1answer
56 views
How do I add magento frontend css to backend?
I have a block, which is appearing in the backend, and is adding a css file via the usual command:
$this->getLayout()->getBlock('head')->addCss('mymodule/css/filename.css');
And this ...
0
votes
2answers
159 views
Magento Adminhtml Grid using sales/order_item collection filtered by customer
My objective is simple. I have a module called Quotes, I have managed to get Magento to create a new quote record each time a cart is created by changing the is_active column when a quote is 'checked ...
0
votes
1answer
26 views
is ACL the reason for my buggy module?
I've made a custom module that successfully adds a new menu in the admin->configuration section and saves some settings to magento config, and also creates a table at first run/install. Everything ...
0
votes
1answer
411 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,
...
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
1answer
363 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 ...
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' => ...
0
votes
1answer
284 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', ...
1
vote
1answer
741 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 @ ...
0
votes
2answers
574 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 ...
1
vote
1answer
335 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
0
votes
3answers
621 views
how does the Image Gallery form get populated in Magento Admin
I can see that Mage_Adminhtml_Block_Catalog_Product_Helper_Form_Gallery_Content::getImagesJson() and app\design\adminhtml\default\default\template\catalog\product\helper\gallery.phtml are responsible ...
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 ...
