Ignore:
Timestamp:
May 4, 2009, 5:12:01 AM (15 years ago)
Author:
gav
Message:

Install Quartz plugin and make a start on TaskRecurringScheduleJob?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/recurringSchedule/create.gsp

    r122 r123  
    3333                                <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'plannedMaintenance','errors')}">
    3434                                    <g:select optionKey="id" from="${PlannedMaintenance.list()}" name="plannedMaintenance.id" value="${recurringScheduleInstance?.plannedMaintenance?.id}" noSelection="['null':'']"></g:select>
     35                                </td>
     36                            </tr>
     37                       
     38                            <tr class="prop">
     39                                <td valign="top" class="name">
     40                                    <label for="lastExecutedDate">Last Executed Date:</label>
     41                                </td>
     42                                <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'lastExecutedDate','errors')}">
     43                                    <g:datePicker name="lastExecutedDate" value="${recurringScheduleInstance?.lastExecutedDate}" noSelection="['':'']"></g:datePicker>
     44                                </td>
     45                            </tr>
     46                       
     47                            <tr class="prop">
     48                                <td valign="top" class="name">
     49                                    <label for="nextDueDate">Next Due Date:</label>
     50                                </td>
     51                                <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'nextDueDate','errors')}">
     52                                    <g:datePicker name="nextDueDate" value="${recurringScheduleInstance?.nextDueDate}" noSelection="['':'']"></g:datePicker>
    3553                                </td>
    3654                            </tr>
Note: See TracChangeset for help on using the changeset viewer.