/**
  * Merge rows into the form.
  *
  * @param Table $parent
  * @param Table $child
  */
 protected function mergeFields(Table $parent, Table $child)
 {
     foreach ($child->getRows() as $row) {
         $parent->addRow($row);
     }
 }