- Timestamp:
- Nov 28, 2009, 2:17:34 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 stacktrace.log1 *.log 2 2 *.war
-
- Property svn:ignore
-
trunk/grails-app/views/taskRecurringScheduleDetailed/create.gsp
r157 r199 38 38 <tr class="prop"> 39 39 <td valign="top" class="name"> 40 <label for=" startDate">Start Date:</label>40 <label for="nextTargetStartDate">Next Target Start Date:</label> 41 41 </td> 42 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:' startDate','errors')}">43 <richui:dateChooser name=" startDate" format="dd-MM-yyyy" value="${taskRecurringScheduleInstance?.startDate}" />42 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'nextTargetStartDate','errors')}"> 43 <richui:dateChooser name="nextTargetStartDate" format="dd-MM-yyyy" value="${taskRecurringScheduleInstance?.nextTargetStartDate}" /> 44 44 </td> 45 45 </tr> … … 74 74 <input type="text" class="time ${hasErrors(bean:taskRecurringScheduleInstance,field:'generateAhead','errors')}" 75 75 id="generateAhead" name="generateAhead" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'generateAhead')}" /> 76 <g:select optionKey="id" from="${Period.list()}" name="generateAheadPeriod.id" value="${taskRecurringScheduleInstance?.generateAheadPeriod?.id}" ></g:select>76 ${Period.get(1).encodeAsHTML()} 77 77 </td> 78 78 </tr> … … 80 80 <tr class="prop"> 81 81 <td valign="top" class="name"> 82 <label for=" isEnabled">IsEnabled:</label>82 <label for="enabled">Enabled:</label> 83 83 </td> 84 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:' isEnabled','errors')}">85 <g:checkBox name=" isEnabled" value="${taskRecurringScheduleInstance?.isEnabled}" ></g:checkBox>84 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'enabled','errors')}"> 85 <g:checkBox name="enabled" value="${taskRecurringScheduleInstance?.enabled}" ></g:checkBox> 86 86 </td> 87 87 </tr>
Note: See TracChangeset
for help on using the changeset viewer.