Changeset 288 for trunk/grails-app/views
- Timestamp:
- Mar 21, 2010, 2:17:51 PM (12 years ago)
- Location:
- trunk/grails-app/views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/event/edit.gsp
r264 r288 178 178 179 179 180 <!-- this part changes dynamically on select --> 180 181 181 182 182 183 <tbody id="preview"> 184 185 <!-- this part changes dynamically on select --> 183 186 <g:include action='showPartial' controller='eventDescription' params="[protocolid:protocols[0].id]" id="${eventInstance.id}" /> 187 188 189 <!-- show checkbox when creating events --> 190 <g:if test="${createNew}"> 191 <tr class="prop"> 192 <td valign="top" class="name"> 193 <label for="endTime"><g:message code="event.endTime.label" default="This is a Sampling event" /></label> 194 </td> 195 <td valign="top" class="name"> 196 <g:checkBox name="isSamplingEvent" value="${false}" /> 197 </td> 198 </tr> 199 </g:if> 200 184 201 </tbody> 202 203 204 185 205 186 206 -
trunk/grails-app/views/eventDescription/showPartial.gsp
r272 r288 45 45 46 46 47 <% showSample=true %>48 <tr class="prop">49 <td valign="top" class="name">50 <label for="endTime"><g:message code="event.endTime.label" default="This is a sampling event" /></label>51 </td>52 <td valign="top" class="name">53 <g:checkBox name="isSamplingEvent" value="${false}" />54 </td>55 </tr>56 47 57 58 59 60 61 62 63
Note: See TracChangeset
for help on using the changeset viewer.