Changeset 588
- Timestamp:
- Jun 9, 2010, 11:51:58 AM (14 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/TaskDetailedController.groovy
r585 r588 263 263 } 264 264 265 displayList = taskReportService.getWorkLoadSummary(266 [taskInstanceList: taskInstanceList], RCU.getLocale(request)267 ).displayList265 // displayList = taskReportService.getWorkLoadSummary( 266 // [taskInstanceList: taskInstanceList], RCU.getLocale(request) 267 // ).displayList 268 268 269 269 // export plugin: … … 292 292 } 293 293 294 //if(taskInstanceTotal > params.max)295 //params.errorMessage = g.message(code:"task.search.calendar.text.too.many.results", args:[params.max])294 if(taskInstanceTotal > params.max) 295 params.errorMessage = g.message(code:"task.search.calendar.text.too.many.results", args:[params.max]) 296 296 297 297 // Add some basic params to filterParams. … … 299 299 filterParams.offset = params.offset?.toInteger() ?: 0 300 300 301 return[displayList: displayList, 302 taskInstanceList: taskInstanceList, 301 return[taskInstanceList: taskInstanceList, 303 302 taskInstanceTotal: taskInstanceTotal, 304 303 filterParams: filterParams, -
trunk/grails-app/views/taskDetailed/searchCalendar.gsp
r585 r588 101 101 <br /> 102 102 103 <richui:calendarMonthView items="${displayList}" 104 displayField="text" 105 createLink="false" 106 constraintDateFields="['date']" 103 <richui:calendarMonthView items="${taskInstanceList}" 104 createLink="true" 105 constraintDateFields="['targetStartDate']" 107 106 month="${showDate}" 108 107 controller="taskDetailed"
Note: See TracChangeset
for help on using the changeset viewer.