I'm newbie to grails and I've tried to use the grails pagination Tag found here link text
and when i tried to use it like he says like the this
Controller :
def pageslist = {
[pages: Page.list(params)]
}
view
< g:paginate next="Forward" prev="Back" maxsteps="5" controller="story" action="pageslist" total="${story.pages.count()}" />
it gives me nothing at all and the debugger never enter the controller method.. what is the problem and is there any other way for paginating in server side way