コード例 #1
0
 /**
  * function setFormFieldsToTemplate
  * <pre>
  * Stores the fields into the Template object. This one is updated to 
  * add fields by each rowItem's primary ID...
  * </pre>
  * @return [void]
  */
 function setFormFieldsToTemplate()
 {
     // for each rowItem in family ...
     $this->rowManager->setFirst();
     while ($rowItem = $this->rowManager->getNext()) {
         parent::setFormFieldsToTemplate($rowItem->getPrimaryKeyValue());
     }
     // next rowItem
 }