Hi,
I would like a controller to return a JSON object to my request but would need to render a partial as string, contained in this JSON object.
Something like :
# This doesn't work as it makes more than one call to render in the same action render :json => {:number => 100, :string => render(:partial => 'string')}
I actually need such feature using ROR 1.2.6
Any idea how to achieve such result ?