Changeset 214 for trunk/grails-app/views
- Timestamp:
- Dec 4, 2009, 1:13:08 AM (15 years ago)
- Location:
- trunk/grails-app/views/taskDetailed
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskDetailed/create.gsp
r196 r214 51 51 </td> 52 52 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetStartDate','errors')}"> 53 <richui:dateChooser name="targetStartDate" format="dd-MM-yyyy" value="${ new Date()}" />53 <richui:dateChooser name="targetStartDate" format="dd-MM-yyyy" value="${taskInstance.targetStartDate}" /> 54 54 <g:helpBalloon class="helpballoon" code="task.targetStartDate" /> 55 55 </td> … … 61 61 </td> 62 62 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetCompletionDate','errors')}"> 63 <richui:dateChooser name="targetCompletionDate" format="dd-MM-yyyy" value="${ new Date()}" />63 <richui:dateChooser name="targetCompletionDate" format="dd-MM-yyyy" value="${taskInstance.targetCompletionDate}" /> 64 64 <g:helpBalloon class="helpballoon" code="task.targetCompletionDate" /> 65 65 </td> -
trunk/grails-app/views/taskDetailed/searchCalendar.gsp
r181 r214 38 38 <filterpane:filterButton text="Advanced" appliedText="Advanced" /> 39 39 </div> 40 <richui:calendarMonthView items="${taskInstanceList}" createLink="true" constraintDateFields="['targetStartDate']" month="${new Date()}" controller="taskDetailed" action="show" /> 40 <richui:calendarMonthView items="${taskInstanceList}" 41 createLink="true" 42 constraintDateFields="['targetStartDate']" 43 month="${new Date()}" 44 controller="taskDetailed" 45 action="show" 46 dayAction="create"/> 41 47 <filterpane:filterPane domainBean="Task" 42 48 title="Advanced Search"
Note: See TracChangeset
for help on using the changeset viewer.