/**
  * Add some additionnal information beside the field in the submit new artifact form.
  * This is up to the field. It can be html or inline javascript
  * to enhance the user experience
  * @return string
  */
 public function fetchSubmitAdditionnalInfo($submitted_values)
 {
     $html = parent::fetchSubmitAdditionnalInfo($submitted_values);
     if ($this->isJavascriptIncludedInValue($submitted_values)) {
         $html .= $this->displaySubmitJavascript();
     }
     return $html;
 }
 /**
  * Add some additionnal information beside the field in the submit new artifact form.
  * This is up to the field. It can be html or inline javascript
  * to enhance the user experience
  * @return string
  */
 public function fetchSubmitAdditionnalInfo()
 {
     $html = parent::fetchSubmitAdditionnalInfo();
     $html .= $this->displaySubmitJavascript();
     return $html;
 }