Changeset 1136
- Timestamp:
- Nov 15, 2010, 11:06:45 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r1115 r1136 1 1 #Grails Metadata file 2 2 #Tue Oct 26 16:55:24 CEST 2010 3 app.grails.version=1.3. 43 app.grails.version=1.3.5 4 4 app.name=gscf 5 5 app.servlet.version=2.4 … … 14 14 plugins.db-util=0.4 15 15 plugins.famfamfam=1.0.1 16 plugins.grom=0.1.1 516 plugins.grom=0.1.11 17 17 plugins.hibernate=1.3.4 18 18 plugins.jquery=1.4.3.2 -
trunk/grails-app/views/templateEditor/elements/_liFieldSelected.gsp
r980 r1136 1 1 <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 2 4 <g:if test="${template.inUse()}"> 3 5 <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."> … … 11 13 <b>${templateField.name}</b> 12 14 (<g:if test="${templateField.unit}">${templateField.unit}, </g:if><g:render template="elements/${templateField.type.toString().toLowerCase().replaceAll(/ /,'_')}" model="[templateField: templateField]"/>) 13 14 15 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 47 47 remove: removeTemplateFieldEvent, 48 48 start: savePosition 49 }) .disableSelection();49 }); 50 50 51 51 … … 55 55 connectWith: '.templateFields', 56 56 start: savePosition 57 }).disableSelection(); 58 57 }); 59 58 60 59 $("#ontologyDialog").dialog({ … … 96 95 <% /* NB: this empty field should always be the last in the list! */ %> 97 96 <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"> 98 98 </ol> 99 99 </div> -
trunk/web-app/css/templateEditor.css
r1056 r1136 27 27 */ 28 28 .templateFields { list-style-type: none; margin: 0; padding: 0; width: 330px; } 29 .templateFields li { margin: 0 5px 3px 5px; padding: 3px 5px; }29 .templateFields li { margin: 0 5px 3px 5px; padding: 3px 5px; display: block; } 30 30 html>body .templateFields li { line-height: 16px; vertical-align: center; } 31 31 .ui-state-highlight { height: 17px; } … … 88 88 MozOpacity: 0.5; 89 89 -khtml-opacity:.50; 90 -ms-filter: âalpha(opacity=50)â;90 -ms-filter:"alpha(opacity=50)"; 91 91 -moz-opacity:.50; 92 92 filter:alpha(opacity=50); -
trunk/web-app/js/templateEditor.js
r1077 r1136 224 224 // Disable all other listitems 225 225 $( '#availableTemplateFields li:not(#' + list_item_id + ')').addClass( 'ui-state-disabled' ); 226 $( '#selectedTemplateFields li:not(#' + list_item_id + ')').addClass( 'ui-state-disabled' ); 226 227 227 228 if( list_item_id != 'templateField_new' ) { … … 240 241 // Enable all other listitems 241 242 $( '#availableTemplateFields li:not(#templateField_' + id + ')').removeClass( 'ui-state-disabled' ); 243 $( '#selectedTemplateFields li:not(#' + id + ')').removeClass( 'ui-state-disabled' ); 242 244 $( '#addNew').removeClass( 'ui-state-disabled' ); 243 245
Note: See TracChangeset
for help on using the changeset viewer.