Tagged Questions
The actionviewhelper tag has no wiki summary.
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 ...
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
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 ...
2
votes
2answers
119 views
Rails number_to_currency precision doesn't work - is it a bug?
I'm trying to use number_to_currency to get two digits after the decimal dot in Rails 3, but I can get only one. My DB field is defined like this:
t.decimal "amount", :precision => ...
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
2answers
4k views
Using helpers in rails 3 to output html
I'm trying my best to build a helper that outputs a <'ul> consisting of all the members of a collection. For each member of the collection I want to print out a <'li> that has a title, and a ...
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
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
1answer
84 views
Undefined method 'url_for' while rendering a Rails 2.3.x template inside a ActiveRecord model
I know that this not an "acceptable" practice but as a background process I am caching a rendered Rails partial into the database for faster output via JSONP. I have found many resources on the topic ...
1
vote
1answer
79 views
How do I use an ActionView::Helper in a Ruby script, outside of Rails?
I am looking to use ActionView::Helpers::NumberHelper from a Ruby script.
What all do I need to require etc.?
1
vote
1answer
148 views
How do I use form helpers in the mailer in rails 3?
I am trying to create a mail to users which includes a simple html form. For this I am using ActionMailer from Rails 3 as suggested in the tutorial at ...
1
vote
1answer
174 views
Zend action helper redirector
How to redirect in models or not in contrroler? use standart zend redirector helper
$redirector = new Zend_Controller_Action_Helper_Redirector();
$redirector->gotoUrl('/');
1
vote
1answer
759 views
Rails problem with humanize
I am trying to humanize the symbols that are the keys for a hash
c.each_key{ |f| humanize(f.to_s)}
but for some reason, i get an error like so
ActionView::Template::Error (undefined method ...
1
vote
1answer
1k views
RoR: undefined method `url_for' for nil:NilClass
I have a standard Rails application.
When a Tip is created, I would like to create a Message for each User who is interested in that Tip.
This sounds simple right? It should be...
So, we start with ...
1
vote
4answers
899 views
How can I stop the password field being pre-populated on edit?
I have this problem all the time in my rails apps and I still need the correct solution. Whenever a user edits their own record the password field is being populated. I suspect its Firefox as setting ...
0
votes
1answer
26 views
Is this the correct way of rendering a yield content_for?
<%= yield(:title_box) if content_for?(:title_box) %>
Or is the if condition useless here?
0
votes
3answers
77 views
Passing path to current_page method
I have a helper method to help to determine whether or not a navigation menu item should be active/inactive.
def events_nav_link
nav_item = 'Events'
if current_page?(events_path) # ...
0
votes
1answer
92 views
Rails - content_tag for table cell with rowspan
How would you translate this into a Rails content_tag?
<td rowspan="4">glah</td>
0
votes
2answers
79 views
View Helper in Kohana
I am trying to figure out a way to do the following:
I want to make an action which will be loaded through ajax and also its the internal part of the page when page is reloaded.
I know this in ZEND ...
0
votes
1answer
81 views
Rails collection_select prompt appears on initial page load, not thereafter. Any fix?
Rails 2.3.11.
I have a search form like this...
- form_for(@search) do |form|
# bla bla bla
= form.collection_select(:Location_eq,
Contract.all_locations, :first, :last,
{:prompt ...
0
votes
1answer
121 views
Rails - How would I get the URL of a single image asset in the controller?
I've tried including ActionView::Helpers::AssetTagHelper and then using the image_path() method however it gives me grief:
undefined local variable or method `config' for ...
0
votes
1answer
429 views
How can I add a view path to Rails's partial rendering lookup?
I'd like to have the following directory structure:
views/
app1/
users/_user.html.erb
users/index.html.erb
app2/
users/index.html.erb
shared/
users/_user.html.erb
...
0
votes
2answers
321 views
Rails: Views: content_tag helpers
I have a controller which does the following line before rendering the view and outputting an error.
flash[:error]="Flash error"
flash[:info] = "Flash info"
I would like to format this nicely. For ...
0
votes
1answer
204 views
Zend Framework - View Helper Problem
I need some help, it's about custom view helper.
So my folder structure is like this:
application
- modules
- - smjestaj
- views
- - helpers
- - - LoadSkin.php
And if I go to my ...
0
votes
1answer
34 views
What is the mechanism behind view helpers?
I wonder what approach Rails uses to find the correct method of a view helper. I recognized while calling a view helper method in a partial that the view helper must not belong to the same view nor ...
0
votes
1answer
131 views
how to add styles to actionview helper tags?
how do i add styles to actionviews helper tags. like the following
<%= link_to "Home", :controller=> "home", :action=> "index", :style=>{:position=>"absolute", :top=>"0px"} %>
...
0
votes
1answer
65 views
How can I programatically determine which methods have been declared as “helper” methods by a controller in Rails?
I'm writing a plugin that adds a method to controllers and declares it as a helper method. If it were done statically (rather than through the plugin), it would look something like this:
# in ...