$this->_elements[0] =& MoodleQuickForm::createElement('text', 'value', '');
$this->_elements[1] =& MoodleQuickForm::createElement('button', 'popup', get_string('chooseafile', 'resource') .' ...');
- $button=$this->_elements[1];
+ $button =& $this->_elements[1];
if ($this->_options['courseid']!==null){
$courseid=$this->_options['courseid'];
$buttonattributes = array('title'=>get_string("chooseafile", "resource"),
'onclick'=>"return openpopup('$url', '".$button->getName()."', '$options', $fullscreen);");
+
$button->updateAttributes($buttonattributes);
}
/**
return parent::onQuickFormEvent($event, $arg, $caller);
} // end func onQuickFormEvent
+
}
?>
\ No newline at end of file