Explorar o código

Adding skeleton of participantPortal

Andrej Studen %!s(int64=2) %!d(string=hai) anos
pai
achega
3e00313215
Modificáronse 2 ficheiros con 73 adicións e 0 borrados
  1. 47 0
      views/participantPortal.html
  2. 26 0
      web/crfTecant/participantPortal.js

+ 47 - 0
views/participantPortal.html

@@ -0,0 +1,47 @@
+<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:none">
+	<h3>Debug notes</h3>
+	<textarea cols="95" rows="5" id="formStatus">
+	</textarea>
+</div>
+
+<script type "text/javascript">
+window.onload=init;
+
+function loadScripts(){
+  LABKEY.requiresScript(["crfTecant/participantPortal.js"],init);
+}
+
+function init(){
+   console.log('Here participantPortal');
+   //formPortal.scriptsLoaded();
+}
+</script>

+ 26 - 0
web/crfTecant/participantPortal.js

@@ -0,0 +1,26 @@
+var participantPortal={};
+
+participantPortal.print=function(msg){
+   console.log(msg);
+}
+
+participantPortal.init=
+function(cb=null){
+   let that=this;
+   let action=function(){that.scriptsLoaded(cb);};
+   LABKEY.Utils.requiresScript(["crfTecant/runQuery.js"],action);
+}
+
+participantPortal.scriptsLoaded=
+function(cb=null){
+   if (cb) cb();
+}
+
+participantPortal.generateFormArray=
+function(){
+   let that=this;
+   let action=function(){that.fcontinue0();};
+   this.init(action);
+}
+
+