Changeset 106 for trunk/grails-app/views/taskDetailed
- Timestamp:
- Apr 7, 2009, 12:21:23 AM (16 years ago)
- Location:
- trunk/grails-app/views/taskDetailed
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskDetailed/create.gsp
r91 r106 33 33 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'description','errors')}"> 34 34 <input type="text" style="width:450px" maxlength="75" id="description" name="description" value="${fieldValue(bean:taskInstance,field:'description')}"/> 35 <g:helpBalloon class="helpballoon" code="task.description" /> 35 36 </td> 36 37 </tr> … … 42 43 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'comment','errors')}"> 43 44 <textarea style="width:450px" rows="5" cols="40" name="comment">${fieldValue(bean:taskInstance, field:'comment')}</textarea> 45 <g:helpBalloon class="helpballoon" code="task.comment" /> 44 46 </td> 45 47 </tr> … … 51 53 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetStartDate','errors')}"> 52 54 <g:datePicker name="targetStartDate" value="${taskInstance?.targetStartDate}" precision="day"></g:datePicker> 55 <g:helpBalloon class="helpballoon" code="task.targetStartDate" /> 53 56 </td> 54 57 </tr> … … 60 63 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetCompletionDate','errors')}"> 61 64 <g:datePicker name="targetCompletionDate" value="${taskInstance?.targetCompletionDate}" precision="day"></g:datePicker> 65 <g:helpBalloon class="helpballoon" code="task.targetCompletionDate" /> 62 66 </td> 63 67 </tr> … … 69 73 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'leadPerson','errors')}"> 70 74 <g:select optionKey="id" from="${Person.list()}" name="leadPerson.id" value="${taskInstance?.leadPerson?.id}" ></g:select> 75 <g:helpBalloon code="task.leadPerson" /> 71 76 </td> 72 77 </tr> -
trunk/grails-app/views/taskDetailed/list.gsp
r85 r106 33 33 34 34 <th>Task Status</th> 35 36 <th>Edit</th>37 35 38 <th> Show</th>36 <th></th> 39 37 40 38 </tr> … … 56 54 <td>${fieldValue(bean:taskInstance, field:'taskStatus')}</td> 57 55 58 <td><g:link action="edit" id="${taskInstance.id}">Edit</g:link></td> 59 60 <td><g:link action="show" id="${taskInstance.id}">Show</g:link></td> 56 <td> 57 <g:link action="show" id="${taskInstance.id}"> 58 <img src="${createLinkTo(dir:'images/skin',file:'database_table.png')}" alt="Show" /> 59 </g:link> 60 </td> 61 61 62 62 </tr> -
trunk/grails-app/views/taskDetailed/show.gsp
r98 r106 161 161 <thead> 162 162 <tr> 163 <th style="color:Black">Comment</th>164 <th style="color:Black">Date Done</th>165 <th style="color:Black">Duration</th>166 <th style="color:Black">Entered By</th>167 <th style="color:Black">Edit</th>163 <th>Comment</th> 164 <th>Date Done</th> 165 <th>Duration</th> 166 <th>Entered By</th> 167 <th></th> 168 168 169 169 <!-- <g:sortableColumn property="comment" title="Comment" /> … … 179 179 <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> 180 180 181 <td width="65%">${entry.comment}</td>181 <td style="width:65%">${entry.comment}</td> 182 182 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd MMM yyyy"/></td> 183 183 <td>${entry.durationHour}:${entry.durationMinute}</td> 184 184 <td>${entry.enteredBy}</td> 185 <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td> 185 <td> 186 <g:link controller="entryDetailed" action="edit" id="${entry.id}"> 187 <img src="${createLinkTo(dir:'images/skin',file:'database_edit.png')}" alt="Edit" /> 188 </g:link> 189 </td> 186 190 187 191 </g:if> … … 198 202 <thead> 199 203 <tr> 200 <th style="color:Black">Comment</th>201 <th style="color:Black">Date Done</th>202 <th style="color:Black">Duration</th>203 <th style="color:Black">Entered By</th>204 <th style="color:Black">Edit</th>204 <th>Comment</th> 205 <th>Date Done</th> 206 <th>Duration</th> 207 <th>Entered By</th> 208 <th></th> 205 209 <!-- <g:sortableColumn property="commentW" title="Comment" /> 206 210 … … 219 223 <td>${entry.durationHour}:${entry.durationMinute}</td> 220 224 <td>${entry.enteredBy}</td> 221 <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td> 225 <td> 226 <g:link controller="entryDetailed" action="edit" id="${entry.id}"> 227 <img src="${createLinkTo(dir:'images/skin',file:'database_edit.png')}" alt="Edit" /> 228 </g:link> 229 </td> 222 230 </g:if> 223 231 … … 234 242 <input type="hidden" name="taskInstance.id" value="${taskInstance?.id}" /> 235 243 <span class="button"> 236 <g:actionSubmit value="Add Entry" action="create" class=" edit"/>244 <g:actionSubmit value="Add Entry" action="create" class="add"/> 237 245 </span> 238 246 </g:form>
Note: See TracChangeset
for help on using the changeset viewer.