/**
  * Return the original component's UploadField
  *
  * @return UploadField UploadField instance as defined in the component
  */
 public function getUploadField()
 {
     return $this->component->getUploadField($this->gridField);
 }
 /**
  * Return the original component's UploadField
  * 
  * @return UploadField UploadField instance as defined in the component
  */
 public function getUploadField()
 {
     $field = $this->component->getUploadField($this->gridField);
     $this->extend('updateUploadField', $field);
     return $field;
 }