Changeset 280
- Timestamp:
- Mar 17, 2010, 3:42:48 PM (13 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/studycapturing/WizardController.groovy
r279 r280 510 510 this.appendErrorMap(['exception': e.toString() + ', see log for stacktrace' ], flash.errors) 511 511 512 // debug line513 println e.printStackTrace()512 // stacktrace in flash scope 513 flash.debug = e.getStackTrace() 514 514 515 515 println "rollback" -
trunk/grails-app/views/wizard/common/_error.gsp
r279 r280 36 36 37 37 // show error dialog 38 $("div#wizardError").dialog({ 38 var we = $("div#wizardError"); 39 we.dialog({ 39 40 modal: true, 40 41 width: 600, … … 42 43 Ok: function() { 43 44 $(this).dialog('close'); 45 we.remove(); 44 46 } 45 47 }
Note: See TracChangeset
for help on using the changeset viewer.