Changeset 980 for trunk/grails-app/views
- Timestamp:
- Oct 22, 2010, 1:12:38 PM (10 years ago)
- Location:
- trunk/grails-app/views
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/common/_feedback.gsp
r969 r980 16 16 }); 17 17 </script> 18 <img id="add_feedback" src="${resource(dir: 'images ', file: 'icons/famfamfam/bug_add.png')}" style="cursor: pointer;" alt="submit feedback for this page"/>18 <img id="add_feedback" src="${resource(dir: 'images/icons', file: 'bug_add.png', plugin: 'famfamfam')}" style="cursor: pointer;" alt="submit feedback for this page"/> 19 19 <div class="feedback" id="feedback"> 20 20 <iframe src ="https://trac.nbic.nl/gscf/newticket" width="100%" height="300"> -
trunk/grails-app/views/templateEditor/elements/_liFieldInUse.gsp
r959 r980 1 1 <g:set var="numUses" value="${templateField.numUses()}" /> 2 2 <span class="listButtons"> 3 <img onClick="showTemplateFieldForm( 'templateField_' + ${templateField.id}); this.blur(); return false;" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/application_edit.png')}" alt="Edit template field properties" title="Edit template field properties">4 <img class="disabled" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/delete.png')}" alt="Deleting this field is not possible. Field is used in ${numUses} templates." title="Deleting this field is not possible. Field is used in ${numUses} templates.">5 <img onClick="addTemplateField( ${templateField.id}, null, true );" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/add.png')}" alt="Add field to template" title="Add field to template">3 <img onClick="showTemplateFieldForm( 'templateField_' + ${templateField.id}); this.blur(); return false;" src="${createLinkTo( dir: 'images/icons', file: 'application_edit.png', plugin: 'famfamfam' )}" alt="Edit template field properties" title="Edit template field properties"> 4 <img class="disabled" src="${createLinkTo( dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam' )}" alt="Deleting this field is not possible. Field is used in ${numUses} templates." title="Deleting this field is not possible. Field is used in ${numUses} templates."> 5 <img onClick="addTemplateField( ${templateField.id}, null, true );" src="${createLinkTo( dir: 'images/icons', file: 'add.png', plugin: 'famfamfam' )}" alt="Add field to template" title="Add field to template"> 6 6 </span> 7 7 -
trunk/grails-app/views/templateEditor/elements/_liFieldNotInUse.gsp
r959 r980 1 1 <span class="listButtons"> 2 <img onClick="showTemplateFieldForm( 'templateField_' + ${templateField.id}); this.blur(); return false;" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/application_edit.png')}" alt="Edit template field properties" title="Edit template field properties">3 <img onClick="if( confirm( 'Are you sure?' ) ) { deleteTemplateField( ${templateField.id} ); }" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/delete.png')}" alt="Delete this template field" title="Delete this template field">4 <img onClick="addTemplateField( ${templateField.id}, null, true );" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/add.png')}" alt="Add field to template" title="Add field to template">2 <img onClick="showTemplateFieldForm( 'templateField_' + ${templateField.id}); this.blur(); return false;" src="${createLinkTo( dir: 'images/icons', file: 'application_edit.png', plugin: 'famfamfam' )}" alt="Edit template field properties" title="Edit template field properties"> 3 <img onClick="if( confirm( 'Are you sure?' ) ) { deleteTemplateField( ${templateField.id} ); }" src="${createLinkTo( dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam' )}" alt="Delete this template field" title="Delete this template field"> 4 <img onClick="addTemplateField( ${templateField.id}, null, true );" src="${createLinkTo( dir: 'images/icons', file: 'add.png', plugin: 'famfamfam' )}" alt="Add field to template" title="Add field to template"> 5 5 </span> 6 6 -
trunk/grails-app/views/templateEditor/elements/_liFieldSelected.gsp
r959 r980 1 1 <span class="listButtons"> 2 2 <g:if test="${template.inUse()}"> 3 <img class="disabled" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/delete.png')}" alt="This field can not be removed from the template, as the template is still in use." title="This field can not be removed from the template, as the template is still in use.">3 <img class="disabled" src="${createLinkTo( dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam' )}" alt="This field can not be removed from the template, as the template is still in use." title="This field can not be removed from the template, as the template is still in use."> 4 4 </g:if> 5 5 <g:else> 6 <img onClick="removeTemplateField( ${templateField.id} ); moveFieldListItem( ${templateField.id}, '#availableTemplateFields' );" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/delete.png')}" alt="Remove this template field from the template" title="Remove this template field from the template">6 <img onClick="removeTemplateField( ${templateField.id} ); moveFieldListItem( ${templateField.id}, '#availableTemplateFields' );" src="${createLinkTo( dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam' )}" alt="Remove this template field from the template" title="Remove this template field from the template"> 7 7 </g:else> 8 8 </span> -
trunk/grails-app/views/templateEditor/elements/_liTemplateEditable.gsp
r959 r980 1 1 <span class="listButtons"> 2 <img onClick="editTemplate( ${template.id} );" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/application_edit.png')}" alt="Edit template properties" title="Edit template properties">3 <img onClick="editFields( ${template.id} );"src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/application_form.png')}" alt="Add/remove template fields" title="Add/remove template fields">4 <img onClick="if( confirm( 'Are you sure?' ) ) { deleteTemplate( ${template.id} ); }" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/delete.png')}" alt="Delete this template" title="Delete this template">2 <img onClick="editTemplate( ${template.id} );" src="${createLinkTo( dir: 'images/icons', file: 'application_edit.png', plugin: 'famfamfam' )}" alt="Edit template properties" title="Edit template properties"> 3 <img onClick="editFields( ${template.id} );"src="${createLinkTo( dir: 'images/icons', file: 'application_form.png', plugin: 'famfamfam' )}" alt="Add/remove template fields" title="Add/remove template fields"> 4 <img onClick="if( confirm( 'Are you sure?' ) ) { deleteTemplate( ${template.id} ); }" src="${createLinkTo( dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam' )}" alt="Delete this template" title="Delete this template"> 5 5 </span> 6 6 ${template.name} -
trunk/grails-app/views/templateEditor/elements/_liTemplateNonEditable.gsp
r959 r980 1 1 <g:set var="numUses" value="${template.numUses()}" /> 2 2 <span class="listButtons"> 3 <img onClick="editTemplate( ${template.id} );" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/application_edit.png')}" alt="Edit template properties" title="Edit template properties">4 <img onClick="editFields( ${template.id} );"src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/application_form.png')}" alt="Add/remove template fields" title="Add/remove template fields">5 <img class="disabled" src="${createLinkTo( dir: 'images ', file: 'icons/famfamfam/delete.png')}" alt="Deleting this template is not possible. Template is used in ${numUses} objects." title="Deleting this template is not possible. Template is used in ${numUses} objects.">3 <img onClick="editTemplate( ${template.id} );" src="${createLinkTo( dir: 'images/icons', file: 'application_edit.png', plugin: 'famfamfam' )}" alt="Edit template properties" title="Edit template properties"> 4 <img onClick="editFields( ${template.id} );"src="${createLinkTo( dir: 'images/icons', file: 'application_form.png', plugin: 'famfamfam' )}" alt="Add/remove template fields" title="Add/remove template fields"> 5 <img class="disabled" src="${createLinkTo( dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam' )}" alt="Deleting this template is not possible. Template is used in ${numUses} objects." title="Deleting this template is not possible. Template is used in ${numUses} objects."> 6 6 </span> 7 7 ${template.name} -
trunk/grails-app/views/wizard/pages/_assays.gsp
r959 r980 52 52 <div class="firstColumn">${assay.getIdentifier()}</div> 53 53 <div class="firstColumn"> 54 <wizard:ajaxButton name="deleteAssay" src=" ../images/icons/famfamfam/delete.png" alt="delete this assay" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${assay.getIdentifier()});" afterSuccess="onWizardPage()"/>54 <wizard:ajaxButton name="deleteAssay" src="${resource(dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam')}" alt="delete this assay" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${assay.getIdentifier()});" afterSuccess="onWizardPage()"/> 55 55 </div> 56 56 <wizard:templateColumns class="column" entity="${assay}" name="assay_${assay.getIdentifier()}" /> -
trunk/grails-app/views/wizard/pages/_events.gsp
r959 r980 84 84 <div class="column"> 85 85 <g:textField name="eventGroup_${eventGroup.getIdentifier()}_${template.getIdentifier()}" value="${eventGroup.name}" /> 86 <wizard:ajaxButton name="deleteEventGroup" src=" ../images/icons/famfamfam/delete.png" alt="delete this eventgroup" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${eventGroup.getIdentifier()});" afterSuccess="onWizardPage()" />86 <wizard:ajaxButton name="deleteEventGroup" src="${resource(dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam')}" alt="delete this eventgroup" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${eventGroup.getIdentifier()});" afterSuccess="onWizardPage()" /> 87 87 </div> 88 88 </g:each></g:if> 89 89 <div class="firstColumn"> 90 <wizard:ajaxButton name="addEventGroup" src=" ../images/icons/famfamfam/add.png" alt="add a new eventgroup" class="famfamfam" value="+" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" />90 <wizard:ajaxButton name="addEventGroup" src="${resource(dir: 'images/icons', file: 'add.png', plugin: 'famfamfam')}" alt="add a new eventgroup" class="famfamfam" value="+" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" /> 91 91 </div> 92 92 <wizard:templateColumnHeaders class="column" entity="${event}" /> … … 97 97 <div class="firstColumn">${event.getIdentifier()}</div> 98 98 <div class="firstColumn"> 99 <wizard:ajaxButton name="deleteEvent" src=" ../images/icons/famfamfam/delete.png" alt="delete this event" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${event.getIdentifier()});" afterSuccess="onWizardPage()"/>99 <wizard:ajaxButton name="deleteEvent" src="${resource(dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam')}" alt="delete this event" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${event.getIdentifier()});" afterSuccess="onWizardPage()"/> 100 100 </div> 101 101 <g:if test="${study.eventGroups}"><g:each var="eventGroup" in="${study.eventGroups}"> -
trunk/grails-app/views/wizard/pages/_subjects.gsp
r959 r980 57 57 <div class="firstColumn">${subject.getIdentifier()}</div> 58 58 <div class="firstColumn"> 59 <wizard:ajaxButton name="delete" src=" ../images/icons/famfamfam/delete.png" alt="delete this subject" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${subject.getIdentifier()});" afterSuccess="onWizardPage()" />59 <wizard:ajaxButton name="delete" src="${resource(dir: 'images/icons', file: 'delete.png', plugin: 'famfamfam')}" alt="delete this subject" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${subject.getIdentifier()});" afterSuccess="onWizardPage()" /> 60 60 </div> 61 61 <wizard:templateColumns class="column" entity="${subject}" name="subject_${subject.getIdentifier()}" />
Note: See TracChangeset
for help on using the changeset viewer.