I m new to grails,just started with a small application,
I\'m searching a solution for below problem,
Can any one tell me how can i render to GSP view page of ot
Lets suppose you want to render finalView.gsp of FirstController from normalView.gsp of SecondController having the following structure :
FirstController.groovy
finalView.gsp
SecondController.groovy
normalView.gsp
normalView.gsp will have :
Redirect to finalView.gsp
Then inside your SecondController, define one action called redirectToFirstController
def redirectToFirstController = {
redirect(controller:"FirstController",action:"renderFinalView")
}
And inside your FirstController:
def renderFinalView = {
render(view:"finalView");
}