Changeset 830
- Timestamp:
- Feb 27, 2011, 10:29:09 PM (14 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/i18n/messages.properties
r825 r830 131 131 entry.comment.work.done=Work Done 132 132 entry.comment.work.done.help=Describe the work that was done. 133 entry.comment.production.note=Production Note 134 entry.comment.production.note.help=Comment on the production. 135 entry.comment.work.request=Work Request 136 entry.comment.work.request.help=Describe the work request. 137 entry.comment.pm.entry=PM Entry 138 entry.comment.pm.entry.help=Describe the condition severity and work done. 133 139 entry.productionReference.fault=Production Reference 134 140 entry.productionReference.fault.help=The production during which the fault occurred. -
trunk/grails-app/views/entryDetailed/_create.gsp
r826 r830 14 14 <textarea rows="5" cols="40" name="comment">${fieldValue(bean:entryInstance, field:'comment')}</textarea> 15 15 <g:if test="${entryInstance?.entryType?.id == 1}"> 16 <%-- <g:helpBalloon code="entry.comment.fault" /> --%>16 <custom:helpBalloon code="entry.comment.fault" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 17 17 </g:if> 18 18 <g:elseif test="${entryInstance?.entryType?.id == 2}"> 19 <%-- <g:helpBalloon code="entry.comment.cause" /> --%>19 <custom:helpBalloon code="entry.comment.cause" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 20 20 </g:elseif> 21 21 <g:elseif test="${entryInstance?.entryType?.id == 3}"> 22 <%-- <g:helpBalloon code="entry.comment.work.done" /> --%> 22 <custom:helpBalloon code="entry.comment.work.done" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 23 </g:elseif> 24 <g:elseif test="${entryInstance?.entryType?.id == 6}"> 25 <custom:helpBalloon code="entry.comment.pm.entry" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 23 26 </g:elseif> 24 27 </td> … … 31 34 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'dateDone','errors')}"> 32 35 <richui:dateChooser name="dateDone" format="dd-MM-yyyy" value="${entryInstance.dateDone}" /> 33 <%-- <g:helpBalloon code="entry.date.done" /> --%>36 <custom:helpBalloon code="entry.date.done" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 34 37 </td> 35 38 </tr> … … 47 50 noSelection="['null':'--None--']"> 48 51 </g:select> 49 <%-- <g:helpBalloon code="entry.productionReference.fault" /> --%>52 <custom:helpBalloon code="entry.productionReference.fault" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 50 53 </td> 51 54 </tr> … … 66 69 type="text" id="durationMinute" name="durationMinute" 67 70 value="${fieldValue(bean:entryInstance,field:'durationMinute')}" /> 68 <%-- <g:helpBalloon code="entry.duration" /> --%>71 <custom:helpBalloon code="entry.duration" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 69 72 </td> 70 73 </tr>
Note: See TracChangeset
for help on using the changeset viewer.