Просмотр исходного кода

Merging crfManager and completedPortal to crfManager entity

Andrej Studen 2 лет назад
Родитель
Сommit
76f9afb7ae

+ 0 - 48
views/completedPortal.html

@@ -1,48 +0,0 @@
-<style>
-.box{
-width:120px;
-height:120px;
-}
-
-.gold{ background-color: gold; }
-.red{ background-color: red; }
-
-.large{
-	font-size: 30px;
-}
-
-.center{
-	text-align: center;
-}
-
-.stretch{
-	padding: 50px;
-}
-</style>
-
-<table cellspacing="2" cellpadding="5" border="0">
-<tr><td>Version: </td><td><strong id="version">0.0</strong></td></tr>
-</table>
-
-
-<div id="formDiv">
-</div>
-
-<div id="debugDiv" style="display:block">
-	<h3>Debug notes</h3>
-	<textarea cols="95" rows="5" id="formStatus">
-	</textarea>
-</div>
-
-<script type "text/javascript">
-window.onload=init;
-function init(){
-	config.document=document;
-	config.role="crfManager";
-	config.div="formDiv";
-	config.debugArea="formStatus";
-	clear();
-	print("XStarting");
-	generateFormArray();
-}
-</script>

+ 0 - 9
views/completedPortal.view.xml

@@ -1,9 +0,0 @@
-<view xmlns="http://labkey.org/data/xml/view" title="Completed CRF Portal">
-	<dependencies>
-			<dependency path="crf/formPortal.js"/>
-		</dependencies>
-	<permissions>
-		<permission name="login"/>
-	</permissions>
-
-</view>

+ 0 - 4
views/completedPortal.webpart.xml

@@ -1,4 +0,0 @@
-<webpart xlmns="http://labkey.org/data/xml/webpart"
-	title="CRF Completed Portal">
-	<view name="completedPortal"/>
-</webpart>

+ 7 - 5
views/crfManager.html

@@ -24,6 +24,9 @@ height:120px;
 <tr><td>Version: </td><td><strong id="version">0.0</strong></td></tr>
 </table>
 
+<div id="descDiv">
+</div>
+
 <div id="formDiv">
 </div>
 
@@ -41,17 +44,16 @@ function init(){
 	config.window=window;
 	config.div="formDiv";
 	config.debugArea="debugArea";
-	config.role="crfSponsor";
+	config.role="crfManager";
 	clear();
 	print("StartingX");
 	//add a button with callback
 	config.button = config.document.createElement("button");
-        config.button.innerHTML = "Generate description";
-	let el=config.document.getElementById(config.div);
-	//print(el);
+   config.button.innerHTML = "Generate description";
+	let el=config.document.getElementById('descDiv');
 	el.appendChild(config.button);
 	config.button.onclick=generateDescription;
-
+   generateFormArray();
 
 }
 </script>

+ 1 - 0
views/crfManager.view.xml

@@ -1,6 +1,7 @@
 <view xmlns="http://labkey.org/data/xml/view" title="CRF Management" frame="portal">
 	<dependencies>
 		<dependency path="crf/crfManager.js"/>
+      <dependency path="crf/formPortal.js"/>
 		<dependency path="crf/pdfkit.standalone.js" />
 		<dependency path="crf/blob-stream.js"/>
 	</dependencies>