Changeset 1555
- Timestamp:
- Feb 24, 2011, 11:15:00 AM (10 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/importer/ImporterController.groovy
r1542 r1555 193 193 194 194 on("next") { 195 if (propertiesPage(flow, flash, params)) { 195 flow.importer_fuzzymatching="false" 196 if (propertiesPage(flow, flash, params)) { 196 197 success() 197 198 } else { -
trunk/grails-app/views/importer/common/_on_page.gsp
r1525 r1555 95 95 96 96 }); 97 98 99 // Disable Enter key 100 function stopRKey(evt) { 101 var evt = (evt) ? evt : ((event) ? event : null); 102 var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); 103 if ((evt.keyCode == 13) && (node.type=="text")) {return false;} 104 } 105 document.onkeypress = stopRKey; 106 97 107 98 108 // attach function to clear button to reset all selects to "don't import" -
trunk/grails-app/views/importer/common/_properties_horizontal.gsp
r1552 r1555 23 23 <tr> 24 24 <td class="header" width="55px"> 25 <input class="buttonsmall" id="clearselect" type="button" value="Clear" name="clearselect" >26 <input class="buttonsmall" id="fuzzymatchselect" type="button" value="Match" name="fuzzymatchselect" >25 <input class="buttonsmall" id="clearselect" type="button" value="Clear" name="clearselect" title="Clear all selections"> 26 <input class="buttonsmall" id="fuzzymatchselect" type="button" value="Match" name="fuzzymatchselect" title="Automatically match columns to properties"> 27 27 <input type="hidden" name="fuzzymatching" id="fuzzymatching" value="false"> 28 <input class="buttonsmall" id="savepropertiesbutton" type="button" value="Save" name="savepropertiesbutton" >29 <input class="buttonsmall" id="loadpropertiesbutton" type="button" value="Load" name="loadpropertiesbutton" >28 <input class="buttonsmall" id="savepropertiesbutton" type="button" value="Save" name="savepropertiesbutton" title="Save the currently set mappings"> 29 <input class="buttonsmall" id="loadpropertiesbutton" type="button" value="Load" name="loadpropertiesbutton" title="Load previously saved mappings"> 30 30 <div id="savemapping" style="display:none"> 31 31 Give current mapping a name and press Save:
Note: See TracChangeset
for help on using the changeset viewer.