Changeset 209 for trunk/grails-app/controllers
- Timestamp:
- Dec 2, 2009, 1:50:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/TaskDetailedController.groovy
r208 r209 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 import org.codehaus.groovy.grails.commons.ConfigurationHolder 3 import com.zeddware.grails.plugins.filterpane.FilterUtils 3 4 4 5 class TaskDetailedController extends BaseController { … … 21 22 22 23 def search = { 23 // println params24 24 params.max = Math.min( params.max ? params.max.toInteger() : 10, 100 ) 25 25 26 26 // Quick Search: 27 if(!params.filter) 28 { 27 if(!FilterUtils.isFilterApplied(params)) { 29 28 def taskInstanceList = [] 30 29 def personInstance = personService.currentUser() … … 62 61 63 62 def searchCalendar = { 64 // println params65 63 params.max = 30 66 64 67 65 // Quick Search: 68 if(!params.filter) 69 { 66 if(!FilterUtils.isFilterApplied(params)) { 70 67 def taskInstanceList = [] 71 68 def personInstance = personService.currentUser() … … 109 106 110 107 def budget = { 111 // println params112 108 params.max = Math.min( params.max ? params.max.toInteger() : 10, 100 ) 113 109 114 110 // Quick Search: 115 if(!params.filter) 116 { 111 if(!FilterUtils.isFilterApplied(params)) { 117 112 def taskInstanceList = [] 118 113 def personInstance = personService.currentUser()
Note: See TracChangeset
for help on using the changeset viewer.