- Timestamp:
- Dec 2, 2009, 1:50:49 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r199 r209 1 1 #utf-8 2 #Tue Nov 24 20:57:54 EST 20092 #Tue Dec 01 18:40:54 EST 2009 3 3 plugins.export=0.4 4 4 plugins.acegi=0.5.1 … … 13 13 app.name=gnuMims 14 14 app.grails.version=1.1.1 15 plugins.filterpane=0.6. 215 plugins.filterpane=0.6.4 -
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.