0
votes
0answers
52 views

How does the paging of a Adminhtml Grid of Magento work?

I have a custom module which has a backendgrid which derives from Mage_Adminhtml_Block_Widget_Grid. As I see this supports also paging, so to switch to the next page via Ajax. But unfortunately if I ...
0
votes
1answer
204 views

Magento select field disables row in related products

I have added a tab with functionality similar to related products, i have added a column with a dropdown like this: $this->addColumn('mycolumn', array( 'name' => 'mycolumn', ...
0
votes
1answer
99 views

Accessing Object of Magento Admin Grid via Java-Script

I would like to access the JavaScript Object of the Magento Adminhtml Grid. I want to reload the Grid after my Dialog is closed an the Ajax-Request to the Controller has finished. If i modify the ...
1
vote
2answers
182 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 ...
0
votes
1answer
399 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
1answer
735 views

How to extend a Magento Core Module Block (to fix a Magento Bug without editing the Core)

What I have so far: etc/modules/BugFix_MageAdminhtmlBlockWidgetGrid.xml <?xml version="1.0"?> <config> <modules> <BugFix_MageAdminhtmlBlockWidgetGrid> ...
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
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 ...