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/edit.gsp

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