Magento – How to create Magento editable grid

drop-downsgridmagento-1.9save

I couldn't find a better tutorial for creating an admin grid which is editable. And the grid column contains dropdown boxes. And there's only one save button for the entire grid. (Means there's no Action column anymore). I'll provide a mock diagram of the grid which I want to generate. Please suggest if found any tutorials or way to achieve this easily. I have created this grid form. But it's not saving data.

enter image description here

Best Answer

Here is a tutorial

http://www.atwix.com/magento/inline-editing-in-magento-backend-grids/

It suggests you override the column renderers

Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Input

to allow inline editing, it will save the data as each control is edited rather than at the end with a save button.