Changeset 1136 for trunk/grails-app


Ignore:
Timestamp:
Nov 15, 2010, 11:06:45 AM (13 years ago)
Author:
robert@…
Message:

Improved template editor to show field details when a field is selected for use in a template. See ticket 179

Location:
trunk/grails-app/views/templateEditor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/templateEditor/elements/_liFieldSelected.gsp

    r980 r1136  
    11<span class="listButtons">
     2  <img onClick="showTemplateFieldForm( 'templateField_' + ${templateField.id}); this.blur(); return false;" src="${createLinkTo( dir: 'images/icons', file: 'application_edit.png', plugin: 'famfamfam' )}" alt="Show template field properties" title="Show template field properties">
     3
    24  <g:if test="${template.inUse()}">
    35        <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.">
     
    1113  <b>${templateField.name}</b>
    1214  (<g:if test="${templateField.unit}">${templateField.unit}, </g:if><g:render template="elements/${templateField.type.toString().toLowerCase().replaceAll(/ /,'_')}" model="[templateField: templateField]"/>)
    13    
    1415
     16  <form class="templateField_form" id="templateField_${templateField.id}_form">
     17          <g:render template="elements/disabledFieldForm" model="['templateField': templateField, 'ontologies': ontologies, 'fieldTypes': fieldTypes]"/>
     18          <div class="templateFieldButtons">
     19                  <input type="button" value="Close" onClick="hideTemplateFieldForm( ${templateField.id} );">
     20          </div>
     21  </form>
  • trunk/grails-app/views/templateEditor/template.gsp

    r1077 r1136  
    4747                                        remove: removeTemplateFieldEvent,
    4848                                        start: savePosition
    49                                 }).disableSelection();
     49                                });
    5050
    5151
     
    5555                                        connectWith: '.templateFields',
    5656                                        start: savePosition
    57                                 }).disableSelection();
    58 
     57                                });
    5958
    6059                                $("#ontologyDialog").dialog({
     
    9695                                        <% /* NB: this empty field should always be the last in the list! */ %>
    9796                                        <li class="empty ui-state-default" <g:if test="${template.fields?.size() > 0 }">style='display: none;'</g:if>>This template does not yet contain any fields. Drag a field to this list or use the 'Add field button'.</li>
     97                                <input type="text" name="xxxas">
    9898                                </ol>
    9999                        </div>
Note: See TracChangeset for help on using the changeset viewer.