Displaying 5 results from an estimated 5 matches for "img_tag".
Did you mean:
image_tag
2006 Oct 14
2
Documentation for html_options = {}
Hi, trying to locate documentation for html_options = {} as allowed in
RJS calls such as link_to_remote.
Can anyone point me in the right direction please?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2007 Feb 19
2
Integrate scruffy graph in rails view?
Hi everybody,
I''m using scruffy to create some graphs, and would like to integrate
them into a regular view (i.e. show them in an <img> tag).
However, I get errors when using img_tag, or the image doesn''t load if
I try saving the graph to disk and then loading them in html.
Generating the graph and linking to it works, however then I only have
the graph open in a new window, whereas I''d like to use the graph as
an image inside an html page.
Any pointers on ho...
2007 Jan 30
3
Update for thread: Multiple rails apps with Mongrel
Hi,
I found another way to throw multiple rails apps under a single
domain like:
http://www.domain.com/app1
http://www.domain.com/app2
changes here...
http://tonyrose023.blogspot.com/2007/01/multiple-rails-apps-with-
mongrel.html
Tony
2006 Feb 25
7
generating HTML instead of XHTML
After reading
http://www.hixie.ch/advocacy/xhtml
and having some headaches with IE, I wonder whether helpers can be
configured to generate HTML instead of XHTML.
-- fxn
2006 Aug 09
8
AJAX image manipulation
I have this code in a controller that returns images to my browser...with
ROR.
def index
@products = Product.find_all_ pictures
end
....this is the .rhtml..
<% for photo in @pic -%>
<div class="entry">
<img src="<%= photo.image_url %>"/>
<h3><%= h(photo.title) %></h3>
<%= photo.description %>