1+ < div id ="incorrect-gender "> </ div >
2+ < div id ="incorrect-species "> </ div >
3+ < div id ="incorrect-ids "> </ div >
4+ < div id ="incorrect-age "> </ div >
5+
6+ < script type ="text/javascript ">
7+ Ext4 . onReady ( function ( ) {
8+
9+ new LABKEY . QueryWebPart ( {
10+ renderTo : 'incorrect-gender' ,
11+ title : 'Parents having incorect gender' ,
12+ schemaName : 'study' ,
13+ queryName : 'parentsIncorrectGender' ,
14+ } )
15+
16+ new LABKEY . QueryWebPart ( {
17+ renderTo : 'incorrect-species' ,
18+ title : 'Parents having different species than offspring' ,
19+ schemaName : 'study' ,
20+ queryName : 'parentsDifferentSpecies' ,
21+ } )
22+
23+ new LABKEY . QueryWebPart ( {
24+ renderTo : 'incorrect-ids' ,
25+ title : 'Parents that are listed as both dam and sire' ,
26+ schemaName : 'study' ,
27+ queryName : 'animalIdsAsDamAndSire' ,
28+ } )
29+
30+ new LABKEY . QueryWebPart ( {
31+ renderTo : 'incorrect-age' ,
32+ title : 'Dam/Sire younger than offspring' ,
33+ schemaName : 'study' ,
34+ queryName : 'parentsYoungerThanOffspring' ,
35+ } )
36+ } ) ;
37+ </ script >
0 commit comments