public function getArrayRows()
 {
     $result = parent::getArrayRows();
     foreach ($result as $key => $row) {
         $this->prepareArrayRow($row);
     }
     return $result;
 }
Example #2
0
 /**
  * Obtain existing data from form element
  *
  * Each row will be instance of Varien_Object
  *
  * @return array
  */
 public function getArrayRows()
 {
     $arrayRows = parent::getArrayRows();
     foreach ($arrayRows as $arrayRow) {
         $this->_prepareArrayRow($arrayRow);
     }
     return $arrayRows;
 }
Example #3
0
 public function getArrayRows()
 {
     $this->_prepareRows();
     return parent::getArrayRows();
 }