Changeset 374 for trunk/grails-app/controllers
- Timestamp:
- Feb 18, 2010, 1:20:22 AM (15 years ago)
- Location:
- trunk/grails-app/controllers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/ManufacturerDetailedController.groovy
r372 r374 15 15 16 16 def show = { 17 18 // In the case of an actionSubmit button, rewrite action name from 'index'. 19 if(params._action_Show) 20 { params.action='show' } 21 17 22 def manufacturerInstance = Manufacturer.get( params.id ) 18 23 … … 44 49 45 50 def edit = { 51 52 // In the case of an actionSubmit button, rewrite action name from 'index'. 53 if(params._action_Edit) 54 { params.action='edit' } 55 46 56 def manufacturerInstance = Manufacturer.get( params.id ) 47 57 -
trunk/grails-app/controllers/SupplierDetailedController.groovy
r372 r374 15 15 16 16 def show = { 17 18 // In the case of an actionSubmit button, rewrite action name from 'index'. 19 if(params._action_Show) 20 { params.action='show' } 21 17 22 def supplierInstance = Supplier.get( params.id ) 18 23 … … 44 49 45 50 def edit = { 51 52 // In the case of an actionSubmit button, rewrite action name from 'index'. 53 if(params._action_Edit) 54 { params.action='edit' } 55 46 56 def supplierInstance = Supplier.get( params.id ) 47 57
Note: See TracChangeset
for help on using the changeset viewer.