Browse Source

Allowing formPortalNew to report missing roleAndSite parameter indicating it with a text to an optional parameter elError

Andrej Studen 1 year ago
parent
commit
10085a03a9
1 changed files with 9 additions and 3 deletions
  1. 9 3
      web/crf/formPortalNew.js

+ 9 - 3
web/crf/formPortalNew.js

@@ -185,7 +185,7 @@ function(roleAndSite=null){
 }
 
 formPortal.displayForms=
-function(el,formList,roleAndSite,formId=null,idLabel=null){
+function(el,formList,roleAndSite,formId=null,idLabel=null,elError=null){
    let fName='[displayForms]';
    //formList is a list of crfEntry entries
    
@@ -212,7 +212,7 @@ function(el,formList,roleAndSite,formId=null,idLabel=null){
       let idLabel=crfSetup.getParticipantLabel(entry);
       let formStatus=crfSetup.getMap('formStatus')[stat];
       let text=[entry['entryId'],user,idLabel,formStatus];
-      fbox.onclick=function(){that.openForm(entry,roleAndSite);};
+      fbox.onclick=function(){that.openForm(entry,roleAndSite,elError);};
 
       for (let j=0;j<text.length;j++){
          crfHTML.createParagraph(text[j],null,fbox);
@@ -240,8 +240,14 @@ function(el,formList,roleAndSite,formId=null,idLabel=null){
 }
 
 formPortal.openForm=
-function(crfEntry,roleAndSite){
+function(crfEntry,roleAndSite,elError=null){
    let fName="[openForm]";
+   if (!roleAndSite){
+      if (elError) 
+         elError.innerText="Set role and site";
+      this.print(fName+' role and site not specified');
+      return;
+   }
 	let crfRef=crfEntry.entryId;
 	
 	this.print(fName+" clicked for "+crfRef);