The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
20 views

Magento + JQuery + Ajax - How do I reload just parts of my custom Module instead of the whole Block?

I was just recently given the task to create a simple Product configurator for our Magento Template in 5 days, where you can choose some attributes and it calculates the price for you, fades over a ...
1
vote
2answers
49 views

Admin Controller Question

Ok, I am once again making a simple module to place something in the admin section. When I do the following: config.xml: <?xml version="1.0"?> <config> <module> ...
0
votes
1answer
226 views

Redirect to module/controller/action

How to redirect to module/controller/action when I'm inside an observer method? I need to redirect to myrouter/adminhtml_test/validate. Why I need this: I try to fire my controller's action which has ...
0
votes
2answers
115 views

Call action after “Save Config” was clicked in the admin

How can I call an action of my controller in a custom module after "Save Config" was clicked in System --> Configuration --> Catalog? (image) Settings of my module are inside that section, and I need ...
0
votes
3answers
122 views

Override Store Controller magento admin

I want to override the default functionality of stores (adding some fields like commission , location to deliver etc ), but i am not able to configure it. My configure file as follows ...
2
votes
1answer
69 views

How to display a phtml in a backend custom menu

I've created a new menu on the backend, called "X" with an item called "Y". When I click on this item, it appears nowhere because I don't know how to display it. Let me show you what I have done. In ...
1
vote
1answer
126 views

How can I override server-side form validation?

I want to provide additional server-side validation of the address forms in Magento, both in Checkout and Customer. I can override Mage_Checkout_OnepageController, ...