How do I update the contents of a placeholder with a generated image in Rails? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T14:14:04Z http://stackoverflow.com/feeds/question/331185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/331185/how-do-i-update-the-contents-of-a-placeholder-with-a-generated-image-in-rails 0 How do I update the contents of a placeholder with a generated image in Rails? Gishu 2008-12-01T15:33:37Z 2008-12-01T17:44:53Z <p>I have a div tag in the view that I'd like to update with a graph that I generate via Gruff.</p> <p>I have the following controller action which does this at the end</p> <pre><code>send_data g.to_blob, :disposition=&gt;'inline', :type=&gt;'image/png', :filename=&gt;'top_n.pdf' </code></pre> <p>Now if I directly invoke this action, I can see the graph. (More details <a href="http://madcoderspeak.blogspot.com/2008/12/graphs-in-ruby-on-rails.html" rel="nofollow">here</a> if reqd.)</p> <p>If I add a <code>link_to_remote_tag</code> that calls the above action via AJAX passing in specific input, generates this graph and tries to update a placeholder div tag... I see gibberish. </p> <p>I think I can write the graph to a png file with <code>g.write(filename.png)</code> how do I embed the graph within the div tag in the view at run-time?</p> http://stackoverflow.com/questions/331185/how-do-i-update-the-contents-of-a-placeholder-with-a-generated-image-in-rails/331565#331565 1 Answer by ARemesal for How do I update the contents of a placeholder with a generated image in Rails? ARemesal 2008-12-01T17:29:55Z 2008-12-01T17:29:55Z <p>In your link_to_remote tag just set :complete to something like this:</p> <pre><code>:complete =&gt; "updateImg(id_of_div, request.responseText)" </code></pre> <p>And write a JS function:</p> <pre><code>function updateImg(id, img) { $(id).innerHTML = '&lt;img src="' + img + '" /&gt;'; } </code></pre> <p>Where id_of_div is the id of the div when you want to show de image. </p> <p>The request.responseText var come from the request of the AJAX call, I mean, when your code writes the png file with the graph, finish the method returning the path to this new png (render :text => path_to_new_image ); then, use this request variable in the :complete.</p> http://stackoverflow.com/questions/331185/how-do-i-update-the-contents-of-a-placeholder-with-a-generated-image-in-rails/331614#331614 0 Answer by Stein Gauslaa Strindhaug for How do I update the contents of a placeholder with a generated image in Rails? Stein Gauslaa Strindhaug 2008-12-01T17:44:53Z 2008-12-01T17:44:53Z <p>You could use a regular <code>img</code> tag to call a controller action wich returns a generated png. If you set up the controller to use <a href="http://api.rubyonrails.org/classes/ActionController/MimeResponds/InstanceMethods.html#M000245" rel="nofollow">respond_to</a> something like this:</p> <pre><code>def graph # get the relevant data for 'g' here respond_to do |format| format.html #uses the default view if relevant (good for debugging) format.png do send_data g.to_blob, :disposition=&gt;'inline', :type=&gt;'image/png', :filename=&gt;'top_n.pdf' end end end </code></pre> <p>You'll even have a normal looking url for the generator like this:</p> <pre><code>&lt;img src="controller/graph.png" alt="Something"/&gt; </code></pre> <p>If there's a chance the image generation can fail: you could store a fallback image on the server and read that file and return that. </p> <p>If the generation is quite heavy and not very likely to change all the time you cold allso cache the resulting file and get that instead if you determine that the data has not changed. You could use the method ARemesal suggested to delay adding the image link until the image is generated and then link directly to the cached file. (It depends on your specific case what's best)</p>