Reputation: 21
Is anyone else having problems getting grails 3.2 to render alternate views? I can’t even get a simple example to work. No stack trace either. Just won’t render the view. I am using the web profile.
def one(){
render( view:'two')
}
def two(){
}
Upvotes: 0
Views: 38
Reputation: 27255
Does anyone else having problems getting grails 3.2 to render alternate views.
I am not.
See the project at https://github.com/jeffbrown/alternateview
package demo
class DemoController {
def one(){
render( view:'two')
}
def two(){
}
}
Both of those appear to work.
Upvotes: 1