Changeset 1198
- Timestamp:
- Nov 24, 2010, 5:21:28 PM (12 years ago)
- Location:
- trunk/grails-app/domain/dbnp/studycapturing
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Assay.groovy
r1036 r1198 53 53 static mapping = { 54 54 sort "name" 55 56 // Workaround for bug http://jira.codehaus.org/browse/GRAILS-6754 57 templateTextFields type: 'text' 55 58 } 56 59 -
trunk/grails-app/domain/dbnp/studycapturing/Event.groovy
r1170 r1198 69 69 static mapping = { 70 70 sort "startTime" 71 72 // Workaround for bug http://jira.codehaus.org/browse/GRAILS-6754 73 templateTextFields type: 'text' 71 74 } 72 75 -
trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy
r1169 r1198 106 106 static mapping = { 107 107 sort "name" 108 109 // Workaround for bug http://jira.codehaus.org/browse/GRAILS-6754 110 templateTextFields type: 'text' 108 111 } 109 112 -
trunk/grails-app/domain/dbnp/studycapturing/SamplingEvent.groovy
r959 r1198 62 62 ] 63 63 64 static mapping = { 65 // Workaround for bug http://jira.codehaus.org/browse/GRAILS-6754 66 templateTextFields type: 'text' 67 } 68 64 69 /** 65 70 * Return the start time of the event, which should be relative to the start of the study -
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r1118 r1198 33 33 static mapping = { 34 34 name column: "subjectname" 35 36 // Workaround for bug http://jira.codehaus.org/browse/GRAILS-6754 37 templateTextFields type: 'text' 35 38 } 36 39
Note: See TracChangeset
for help on using the changeset viewer.