Ignore:
Timestamp:
Mar 15, 2010, 10:40:37 PM (14 years ago)
Author:
keesvb
Message:

upgraded to webflow plugin 1.2.1, added templates to BootStrap?, changed some code to get list_extended back up but it's still not working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/controllers/dbnp/studycapturing/StudyController.groovy

    r253 r269  
    1212        params.max = Math.min(params.max ? params.int('max') : 10, 100)
    1313        [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()]
    1419    }
    1520
     
    4146        }
    4247    }
     48
    4349
    4450    /*def edit = {
Note: See TracChangeset for help on using the changeset viewer.