I can add buttons to Magento admin grids and have that action call some admin controller action. This all works fine with my own modules where the syntax for the action is */*/action, that will call admin code from the same module no problem
However, I want to add a button to the product admin grid and have it call some adminhtml action in my own module.
Adding the button is no problem, but to get it to call the admin controller actions in my own module is not working for me. I can get the button to call a frontend action of my own module with mymodule/index/action, but adminhtml actions aren't working out so easy.
Does anyone have an example of how to do this to share?
admin/routers? Also, how are you generating URLs? - benmarks