[Rails] Re: Re: custom view helper
Chris Habgood wrote:
> Thanks, I am looking to put in in the helper module as a view helper.
Hi Chris,
You can use the above code by putting it in a helper function like
def function_name(site)
return "#{site.name} <br /> #{site.address} <br />
@{site.city},#{site.state.upcase}, #{site.zipcode}"
end
You need to include the helper and call function from view page, like
<%= function_name(site) %>
--
Posted via http://www.ruby-forum.com/.
--
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 rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home