Browse Source

Helping label to indicate patient selector pull down menu in participantPortal

Andrej Studen 1 year ago
parent
commit
1128eafc17
1 changed files with 2 additions and 0 deletions
  1. 2 0
      web/crf/participantPortal.js

+ 2 - 0
web/crf/participantPortal.js

@@ -112,6 +112,8 @@ function(){
    let that=this;
    let updateParticipants=function(){that.updateParticipants();};
    crfRoleSelector.makePortal(updateParticipants);
+   let txt=crfHTML.createParagraph('Select participant','formDiv');
+   crfHTML.clearStyle(txt,'center');
    this.participantSelect=crfHTML.createSelect(new Object(),'formDiv');
    this.displayTable=crfHTML.createTable('formDiv');
    this.participantSelect.onchange=function(){that.displayEntries();}