/**
  * @param string $new_value
  */
 public function addOpenValue($new_value)
 {
     $dao = $this->getDao();
     $dao->startTransaction();
     $new_id = $this->list_field->addBindValue($new_value);
     $this->open_values[] = $new_id;
     $this->save();
     $dao->commit();
     return $new_id;
 }