- Timestamp:
- Mar 15, 2010, 10:40:37 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/studycapturing/StudyController.groovy
r253 r269 12 12 params.max = Math.min(params.max ? params.int('max') : 10, 100) 13 13 [studyInstanceList: Study.list(params), studyInstanceTotal: Study.count()] 14 } 15 16 def list_extended = { 17 params.max = Math.min(params.max ? params.int('max') : 10, 100) 18 [studyList: Study.list(params), studyInstanceTotal: Study.count()] 14 19 } 15 20 … … 41 46 } 42 47 } 48 43 49 44 50 /*def edit = {
Note: See TracChangeset
for help on using the changeset viewer.