Public Member Functions | |
render (Varien_Object $row) | |
Protected Attributes | |
$_values |
Definition at line 34 of file Input.php.
render | ( | Varien_Object $ | row | ) |
Renders grid column
Varien_Object | $row |
Reimplemented from Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract.
Definition at line 44 of file Input.php.
00045 { 00046 $html = '<input type="text" '; 00047 $html.= 'name="'.($this->getColumn()->getName() ? $this->getColumn()->getName() : $this->getColumn()->getId()).'" '; 00048 $html.= 'value="'.$row->getData($this->getColumn()->getIndex()).'"'; 00049 $html.= 'class="input-text '.$this->getColumn()->getInlineCss().'"/>'.$this->getColumn()->getName(); 00050 return $html; 00051 }