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

    r134 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>
     11            <h1>Create Assigned Person</h1>
    1312        </div>
    1413        <div class="body">
    15             <h1>Create AssignedPerson</h1>
    1614            <g:if test="${flash.message}">
    1715            <div class="message">${flash.message}</div>
     
    4846                            <tr class="prop">
    4947                                <td valign="top" class="name">
    50                                     <label for="estimatedHour">Estimated Hour:</label>
     48                                    <label for="durationHour">Estimated Duration:</label>
    5149                                </td>
    52                                 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedHour','errors')}">
    53                                     <input type="text" id="estimatedHour" name="estimatedHour" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedHour')}" />
    54                                 </td>
    55                             </tr>
    56                        
    57                             <tr class="prop">
    58                                 <td valign="top" class="name">
    59                                     <label for="estimatedMinute">Estimated Minute:</label>
    60                                 </td>
    61                                 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedMinute','errors')}">
    62                                     <input type="text" id="estimatedMinute" name="estimatedMinute" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedMinute')}" />
    63                                 </td>
    64                             </tr>
     50
     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>
    6562                       
    6663                        </tbody>
Note: See TracChangeset for help on using the changeset viewer.