Ignore:
Timestamp:
Oct 8, 2009, 7:58:38 PM (15 years ago)
Author:
gav
Message:

Re-install class-diagram from local svn build with patch to allow war deployment.
Class-diagram overrides removed from Config.groovy since these have all been included upstream.
Tidy comments in SecurityConfig?.groovy
Some work on adding assignedPerson work flow and PersonController?.
Add navAlt and filterPane search to Person and TaskProcedure?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/assignedPersonDetailed/edit.gsp

    r96 r147  
    99    <body>
    1010        <div class="nav">
    11             <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
    12             <span class="menuButton"><g:link class="list" action="list">AssignedPerson List</g:link></span>
    13             <span class="menuButton"><g:link class="create" action="create">New AssignedPerson</g:link></span>
     11            <h1>Edit Assigned Person</h1>
    1412        </div>
    1513        <div class="body">
    16             <h1>Edit AssignedPerson</h1>
    1714            <g:if test="${flash.message}">
    1815            <div class="message">${flash.message}</div>
     
    4643                                    <g:select optionKey="id" from="${Person.list()}" name="person.id" value="${assignedPersonInstance?.person?.id}" ></g:select>
    4744                                </td>
    48                             </tr> 
    49                        
     45                            </tr>
     46
    5047                            <tr class="prop">
    5148                                <td valign="top" class="name">
    52                                     <label for="estimatedHour">Estimated Hour:</label>
     49                                    <label for="durationHour">Estimated Duration:</label>
    5350                                </td>
    54                                 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedHour','errors')}">
    55                                     <input type="text" id="estimatedHour" name="estimatedHour" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedHour')}" />
    56                                 </td>
    57                             </tr>
    58                        
    59                             <tr class="prop">
    60                                 <td valign="top" class="name">
    61                                     <label for="estimatedMinute">Estimated Minute:</label>
    62                                 </td>
    63                                 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedMinute','errors')}">
    64                                     <input type="text" id="estimatedMinute" name="estimatedMinute" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedMinute')}" />
    65                                 </td>
    66                             </tr>
    67                        
     51                                <td valign="top" class="value">
     52                                    <input class="time ${hasErrors(bean:assignedPersonInstance,field:'estimatedHour','errors')}"
     53                                        type="text" id="estimatedHour" name="estimatedHour"
     54                                        value="${fieldValue(bean:assignedPersonInstance,field:'estimatedHour')}" />
     55                                    :
     56                                    <input class="time ${hasErrors(bean:assignedPersonInstance,field:'estimatedMinute','errors')}"
     57                                        type="text" id="estimatedMinute" name="estimatedMinute"
     58                                        value="${fieldValue(bean:assignedPersonInstance,field:'estimatedMinute')}" />
     59                                    <g:helpBalloon code="assignedPerson.estimatedDuration" />
     60                                </td>
     61                            </tr>
     62
    6863                        </tbody>
    6964                    </table>
Note: See TracChangeset for help on using the changeset viewer.