Render :partial, :collection in RXML templates

Hi !

Is this expected to work:
xml.instruct!(:xml, :encoding => ‘ISO-8859-1’)
xml.contacts do
render :partial => ‘contact_xml’, :collection => @contacts
end

Considering that contact_xml is a partial named ‘_contact_xml.rxml’ ?
I get an empty contacts element in the resulting document, and the
@contacts array sure does contain two elements.

Thanks !

Hi Francois,

On 11/29/05, Francois B. [email protected] wrote:

@contacts array sure does contain two elements.
Try:

xml.contacts do
xml << render :partial => …
end


sam

Hello Sam !

2005/11/29, Sam S. [email protected]:

Try:
xml.contacts do
xml << render :partial => …
end

Sorry for the late reply. Works like a charm !

Thanks !