|
@@ -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);
|