vote up 3 vote down star
2

Can two domain objects show on the same page, when the list method is called, for example?

http://APP_NAME/foo/list


def list = {
    if(!params.max) params.max = 10
    [ fooList: Foo.list( params ) ]
    [ barList: Bar.list( params ) ]  // Only the last one is returned.

}


On the view page, both tables would be displayed on the page.

 <g:each in="${fooList}" status="i" var="foo"> ... </g:each>
 <g:each in="${barList}" status="i" var="bar">  </g:each>
flag

2 Answers

vote up 7 vote down check

Pretty sure you can return multiple things in that last line:

[ fooList: Foo.list( params ), barList: Bar.list( params ) ]

link|flag
Thanks. It needs a comma. – melling Oct 16 '08 at 2:22
vote up 0 vote down

The comma in the accepted answer is correct, you can remove the // line.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.