source: trunk/grails-app/views/taskRecurringScheduleDetailed/edit.gsp @ 213

Last change on this file since 213 was 213, checked in by gav, 14 years ago

Finishing touches to recurring tasks.

File size: 6.3 KB
RevLine 
[122]1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
[134]7        <title>Edit TaskRecurringSchedule</title>
[157]8        <resource:dateChooser />
[122]9    </head>
10    <body>
11        <div class="nav">
[157]12            <h1>Edit Recurring Schedule</h1>
[122]13        </div>
14        <div class="body">
15            <g:if test="${flash.message}">
16            <div class="message">${flash.message}</div>
17            </g:if>
[134]18            <g:hasErrors bean="${taskRecurringScheduleInstance}">
[122]19            <div class="errors">
[134]20                <g:renderErrors bean="${taskRecurringScheduleInstance}" as="list" />
[122]21            </div>
22            </g:hasErrors>
23            <g:form method="post" >
[134]24                <input type="hidden" name="id" value="${taskRecurringScheduleInstance?.id}" />
25                <input type="hidden" name="version" value="${taskRecurringScheduleInstance?.version}" />
[122]26                <div class="dialog">
27                    <table>
28                        <tbody>
[135]29
[212]30                            <tr class="prop">
31                                <td valign="top" class="name">
32                                    <label for="recForTask">Recurring Schedule for Task:</label>
33                                </td>
34                                <td valign="top" name="recForTask" class="value">
35                                    <g:link controller="taskDetailed" action="show" id="${taskRecurringScheduleInstance?.task?.id}">${taskRecurringScheduleInstance?.task?.encodeAsHTML()}</g:link>
36                                </td>
37                            </tr>
[135]38                           
[122]39                            <tr class="prop">
40                                <td valign="top" class="name">
[199]41                                    <label for="nextTargetStartDate">Next Target Start Date:</label>
[122]42                                </td>
[199]43                                <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'nextTargetStartDate','errors')}">
44                                    <richui:dateChooser name="nextTargetStartDate" format="dd-MM-yyyy" value="${taskRecurringScheduleInstance?.nextTargetStartDate}" />
[213]45                                    <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.nextTargetStartDate" />
[122]46                                </td>
[135]47                            </tr>   
48                     
[122]49                            <tr class="prop">
50                                <td valign="top" class="name">
[135]51                                    <label for="recurEvery">Recur Every:</label>
[122]52                                </td>
[135]53                                <td valign="top" class="value" >
54                                    <input type="text" class="time ${hasErrors(bean:taskRecurringScheduleInstance,field:'recurEvery','errors')}"
[212]55                                        id="recurEvery" name="recurEvery" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'recurEvery')}" />
[137]56                                    <g:select optionKey="id" from="${Period.list()}" name="recurPeriod.id" value="${taskRecurringScheduleInstance?.recurPeriod?.id}" ></g:select>
[213]57                                    <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.recurEvery" />
[122]58                                </td>
[137]59                            </tr>   
60                     
61                            <tr class="prop">
62                                <td valign="top" class="name">
[213]63                                    <label for="taskDuration">Task Duration:</label>
[137]64                                </td>
65                                <td valign="top" class="value" >
66                                    <input type="text" class="time ${hasErrors(bean:taskRecurringScheduleInstance,field:'taskDuration','errors')}"
67                                        id="taskDuration" name="taskDuration" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'taskDuration')}" />
68                                    <g:select optionKey="id" from="${Period.list()}" name="taskDurationPeriod.id" value="${taskRecurringScheduleInstance?.taskDurationPeriod?.id}" ></g:select>
[213]69                                    <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.taskDuration" />
[137]70                                </td>
71                            </tr>       
72                     
73                            <tr class="prop">
74                                <td valign="top" class="name">
[213]75                                    <label for="generateAhead">Generate Ahead:</label>
[137]76                                </td>
77                                <td valign="top" class="value" >
78                                    <input type="text" class="time ${hasErrors(bean:taskRecurringScheduleInstance,field:'generateAhead','errors')}"
79                                        id="generateAhead" name="generateAhead" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'generateAhead')}" />
[199]80                                        ${Period.get(1).encodeAsHTML()}
[213]81                                        <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.generateAhead" />
[137]82                                </td>
83                            </tr>
[122]84                       
85                            <tr class="prop">
86                                <td valign="top" class="name">
[199]87                                    <label for="enabled">Enabled:</label>
[134]88                                </td>
[199]89                                <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'enabled','errors')}">
90                                    <g:checkBox name="enabled" value="${taskRecurringScheduleInstance?.enabled}" ></g:checkBox>
[213]91                                        <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.enabled" />
[134]92                                </td>
[135]93                            </tr>
[134]94                       
[122]95                        </tbody>
96                    </table>
97                </div>
98                <div class="buttons">
99                    <span class="button"><g:actionSubmit class="save" value="Update" /></span>
[137]100<!--                     <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> -->
[122]101                </div>
102            </g:form>
103        </div>
104    </body>
105</html>
Note: See TracBrowser for help on using the repository browser.