The actionview tag has no wiki summary.
23
votes
8answers
14k views
How do I render a partial of a different format in Rails?
I'm trying to generate a JSON response that includes some HTML. Thus, I have /app/views/foo/bar.json.erb:
{
someKey: 'some value',
someHTML: "<%= h render(:partial => '/foo/baz') -%>"
}
...
11
votes
2answers
2k views
Rails: Should partials be aware of instance variables?
Ryan Bates' nifty_scaffolding, for example, does this
edit.html.erb
<%= render :partial => 'form' %>
new.html.erb
<%= render :partial => 'form' %>
_form.html.erb
<%= ...
10
votes
2answers
3k views
Dynamic error pages in Rails 3
In Rails 2.3.x, you can override render_optional_error_file like so:
# ApplicationController.rb
protected
def render_optional_error_file(status_code)
render :template => "errors/500", ...
9
votes
1answer
11k views
Rails form_tag form writing - with non-active record model
I'm somewhat of a Rails newbie. I'm writing a couchrest-rails app, so am not using activerecord for this model. I just figured out that that means that
form_for(@model)
won't work. I'm trying ...
8
votes
2answers
388 views
+50
ActionView::MissingTemplate Error, Only When Visited By A Bot?
I have an action that serves my homepage. It works fine when visited normally (ie by a user in a web browser), but when visited by specific web crawlers, it throws the following error:
A ...
7
votes
9answers
2k views
How do I implement Section-specific navigation in Ruby on Rails?
I have a Ruby/Rails app that has two or three main "sections". When a user visits that section, I wish to display some sub-navigation. All three sections use the same layout, so I can't "hard code" ...
6
votes
3answers
322 views
Rails - Date time select in specified time zone
I'm working with an app for a concert tour website, where all times (announcement times, on-sale start times, and event start times) are local to each particular venue's time zone. I take the user ...
6
votes
3answers
745 views
How do I extract Rails view helpers into a gem?
I have a set of rails view helpers that I use regularly, and would like to package them up into a gem, such that I could just put a line in my Gemfile, and have the helpers accessible from my views.
...
6
votes
4answers
2k views
Rendering a Rails view to string for email
I'd like to send emails from a table every night at midnight, so I've created a model to track all communications to be sent. This Communication model stores who the letter is to, from, and the ...
6
votes
2answers
3k views
Nested Object w/ Checkboxes - mass-assignment even with accepts_nested_attributes_for?
I thought that there should have been a simple solution to this, given that Rails 2.3 has this newfangled nested forms feature. Basically I want to create or update a user and assign them roles at the ...
5
votes
3answers
816 views
rails simple_nested_form_for fields_for wrong number of arguments
So I'm building a form in rails 3.1, using
<%= simple_nested_form_for(@person, :url => collection_url, :html=>{:multipart => true}) do |f| %>
<%= render :partial => "form", ...
5
votes
4answers
1k views
How can I test views in a Rails plugin?
I'm writing a Rails plugin that includes some partials. I'd like to test the partials, but I'm having a hard time setting up a test that will render them. There's no associated controller, so I'm ...
4
votes
1answer
198 views
Rails partial template using a custom handler is escaping html
I'm working on a Rails 3.1 app using JavascriptMVC and ejs templates within the client to do some complicated features on my application. Unfortunately ejs syntax is very similar to erb syntax, to the ...
4
votes
1answer
2k views
ActionView::Template::Error (960.css isn't precompiled)
I have an iframe which renders a partial and is not part of the main application layout or asset pipeline.
I'd like to include some style sheets, however I am getting this error:
...
4
votes
1answer
488 views
Display Page Load Time in Rails 3
How can I display the page load time in the view, similar to how the log file shows "Completed 200 OK in 19ms (Views: 16.8ms | Models: 0.497ms)"
4
votes
4answers
1k views
How to mixin and call link_to from controller in Rails?
This seems like a noob question, but the simple answer is eluding me. I need to call link_to in an ActionController method to spit out an HTML link. ActionView::Helpers::UrlHelper.link_to calls ...
4
votes
1answer
423 views
Getting undefined method content_for()
my mac just broke and I had to migrate to an Ubuntu machine. I am working on an app that is already on production on an Ubuntu machine as well.
I cloned this app into my new machine and all the view ...
4
votes
2answers
474 views
Rails ApplicationHelper Escaping HTML without return statement
When I write
module ApplicationHelper
def flash_helper
flash.each do |key, msg|
content_tag :div, msg, :class => key
## "<div class=\"key\">" + msg + "</div>"
...
4
votes
2answers
354 views
Using Rails form helpers on non-existent methods
Normally, when using form helpers in Rails, each field directly correlates to a method on the appropriate object.
However, I have a form (user signup) that needs to include fields that are not part ...
4
votes
2answers
811 views
How do I access “assigns” after “render :template => …”?
I have an error handling method in my ApplicationController:
rescue_from ActiveRecord::RecordNotFound, :with => :not_found
def not_found(exception)
@exception = exception
render :template ...
3
votes
1answer
214 views
Rails: ActionView::Template::Error (Operation not permitted Error in production.log
Here is what keeps popping up in my production.log
Started GET "/" for 173.26.190.110 at 2011-12-08 12:21:24 -0500
Processing by PagesController#home as HTML
Rendered pages/home.html.erb within ...
3
votes
3answers
832 views
ActionView::MissingTemplate after Rails 3.1 upgrade
After upgrading to Rails 3.1.0 and following David Rice's instructions, all of my controllers strangely can't find their views anymore.
# rails s #
Started GET "/units" for 127.0.0.1 at 2011-09-04 ...
3
votes
1answer
356 views
Implementing Rails 3 template handlers
It appears there's not much documentation on Rails template handlers. There's the included handlers, like RJS, ERB, and Builder, which offer some assistance.
I'm trying to implement my own, and I've ...
3
votes
1answer
518 views
Passing block to label helper in rails3
I want to create label tag with some nested elements. I am using label helper and trying to pass inner html as block but generated HTML doesn't look as I expected.
ERB:
<span>Span ...
3
votes
4answers
796 views
How can I use strip_tags in regular ruby code (non-rails)?
I need to turn html into plain text and theres a nice function that does that in ActionView's SanitizeHelper.
But I have trouble understanding how I can reference it and use it in a simple test.rb ...
3
votes
1answer
84 views
Rails variable loads first time and then is nil!
I am receiving the following error:
ActionView::TemplateError (You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating ...
3
votes
2answers
2k views
How do I expire a view cached fragment from console?
Something like
Rails.cache.delete('site_search_form')
doesn't seem to work. Is this possible? Thanks.
3
votes
4answers
3k views
Rails validation and 'fieldWithErrors' wrapping select tags
Is it normal behaviour to not get the <div class="fieldWithErrors"> wrapped arround select tags that have validation errors? I personally see no reason why the select tags should be treated ...
2
votes
1answer
150 views
ActionView::MissingTemplate - but the template exists already?
I'm having some issues with routing in Rails.
I already have a model in place for a Project model, so I generated some default controllers and views using rails generate scaffold_controller, e.g. ...
2
votes
1answer
370 views
Rails - ActionView::Base.field_error_proc moving up the DOM tree?
Is there anyway to go up the DOM tree from the html_tag element passed in?
ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
# implementation
end
Is there anyway I can ...
2
votes
0answers
38 views
How to rotate the android action view
I am making android program.
I tried to show pdf in web view.
So, I created a new action view (...) and loaded a pdf file in my view.
And I also have a description of ...
2
votes
2answers
294 views
Passing ActionView::Helpers::FormBuilder to a partial
I am atempting to dinamically create form elements given a certain AJAX request.
This is my setup:
View:
<%= link_to 'Next', check_unique_id_students_path, :remote => true %>
...
2
votes
1answer
145 views
Creating a Blank Rails 3.1 Templating Handler
What I want to do is make it just output the view itself, and ignore what Rails would normally think is embedded Ruby within the HTML.
For example:
<div class="current">
<div ...
2
votes
1answer
94 views
Rails' render is generating bizarre, subtly wrong content
I've got an app that hosts simple html pages for people. Some of whom use tables for design layout. (Not me, I swear!) For some mysterious reason, render breaks these layouts in Internet Explorer.
...
2
votes
1answer
185 views
Rails 3: User input escaping working differently in views and mailer
I'm using the following set of code in both my views and the mailer:
<%= simple_format(auto_link(h(user_input))) %>
I begin by calling html_safe (h) on the user_input, in order to escape any ...
2
votes
2answers
891 views
rails - how to render a JSON object in a view
right now I'm creating an array and using:
render :json => @comments
This would be fine for a simple JSON object, but right now my JSON object requires several helpers which is breaking ...
2
votes
2answers
2k views
ActionView::TemplateError (Missing template) In ruby on rails
I am running a RoR application (rails 2.3.8, ruby 1.8.7), the application runs fine on my local machine. but on production the logs show the following error:
ActionView::TemplateError (Missing ...
2
votes
2answers
1k views
Latest Rails 3: ActionView::Template::Error (couldn't parse YAML at line 105 column 13)
I have recently encountered into a weird problem or Rails 3, possibly ever since the new rubygems 1.5 update. Basically when I deploy my program to nginx with passenger 3.0.2, I have 500 page ...
2
votes
1answer
848 views
ActionView::MissingTemplate when trying out Devise Login Items
Now, I have to admit, I'm totally new to Ruby on Rails and don't quite understand every concept. I have installed Devise for authentication and followed this guide to include sign up and log in links ...
2
votes
2answers
1k views
Rails console - use image_tag method
How can I execute a image_tag method in a Rails console
Run the console
$ rails c
Load helpers
include ActionView::Helpers
Execute the command
image_tag('test.png')
I got a strange ...
2
votes
1answer
402 views
Generating unique HTML ids in Rails when using a repeated partial that has form_for
I have a view on my current project which does something like the following(in haml):
-@horses.each do |horse|
= render :partial => 'main/votingbox', :locals => {:horse => horse}
The in ...
2
votes
4answers
3k views
Rails: link_to with block and GET params?
How can I achieve query string and URL parameters in a link_to block declaration? Right now, I have this, which works:
<%= link_to 'Edit', :edit, :type => 'book', :id => book %>
The ...
2
votes
3answers
212 views
How does the yield magic work in ActionView?
I was looking at how content_for works and observed the block.call in the capture_erb_with_buffer method. It apparently magically writes to the buffer variable which is then pruned. However, this I ...
2
votes
3answers
320 views
Class name to view path
I have a RoR application and model SomeModel. I have views for this model and I want to know - is there any method to get the view's path? Of course I can use for this model instance
m = ...
2
votes
2answers
1k views
How to call 'time_ago_in_words' from a FunctionalTest?
I'm using 'time_ago_in_words' function in a view, and I need to test the output in the FunctionalTest.
But the test can not see 'time_ago_in_words' helper function.
What should I do in order to use ...
2
votes
2answers
1k views
Rails XML builder with no pretty-printing (i.e. minified XML)
I am using Builder::XmlMarkup to produce data structures in XML format for a RESTful API server.
Recently, I discovered a bug where the pretty-printing from Builder::XmlMarkup produced an element ...
2
votes
6answers
2k views
Rails: Preselect a value in ActionView-Helper 'collection_select'
I'm trying to get the ActionView-Helper collection_select to take a value that will be preselected in the dropdown-menu.
Neither (:selected in the html-option-hash)
<%= ...
1
vote
3answers
54 views
How do i override the Live TV player being the default handler of an Intent set to the action ACTION_VIEW?
I am trying to follow along here. I have just starting learning to work with channels on GoogleTV.
https://developers.google.com/tv/android/docs/gtv_channelchanging
This doc says...
*Any Google TV ...
1
vote
2answers
25 views
Rails link_to to generate URL with subdirectory
In my routes file I have the line:
match 'documents/:category/:id' => 'documents#show'
allowing me to use URLs like:
*localhost:3000/documents/lesson_plans/day_01*
The URL works correctly, but ...
1
vote
1answer
35 views
Is it possible to stop Rails from rendering views for actions not defined in controllers?
Following this question, I'd like to know if there is a way to override that new rails behaviour. I run into a security issue with a forgotten view, that was suddenly exposed although the action was ...