function fgInsertRow(schemaName,queryName,row,cb=null,containerPath=null){ let fName='[fgInsertRow]'; print(fName); //cb=function(data){....} let qconfig=new Object(); if (containerPath) qconfig.containerPath=containerPath; qconfig.schemaName=schemaName; qconfig.queryName=queryName; qconfig.success=cb; qconfig.rows=[row]; print(fName+' qconfig '+qconfig); LABKEY.Query.insertRows(qconfig); } function addInputRow(table,header,type){ let fName='[addInputRow]'; print(fName); let row=table.insertRow(); let cell=config.document.createElement('th'); let text=config.document.createTextNode(header); cell.appendChild(text); row.appendChild(cell); let input=null; if (type=="select") input=config.document.createElement(type); if (type=="button"){ input=config.document.createElement("input"); input.type="button"; } if (type=="text"){ input=config.document.createElement('textarea'); input.cols="65"; input.rows="5"; } if (type=="label") input=config.document.createElement(type); let cell1=row.insertCell(); cell1.appendChild(input); return input; } function getFormName(formId){ let rows=config.formConfig.dataForms.rows; for (let i=0;i= 0; i--) { input.remove(i); } } function addFormGenerator(){ let fName='[addFormGenerator]'; print(fName); //layout let table=config.document.createElement("table"); table.className="t2"; config.document.getElementById(config.div).appendChild(table); let formGenerator=new Object(); formGenerator.formSelect=addInputRow(table,'Select form',"select"); formGenerator.crfSelect=addInputRow(table,'Select CRF',"select"); formGenerator.comment=addInputRow(table,'Enter comment','text'); formGenerator.details=addInputRow(table,'Details','label'); formGenerator.warnings=addInputRow(table,'Warnings','label'); formGenerator.warnings.innerHTML='None'; addOption(formGenerator.formSelect,'