Helper classes for [tag:actionview]
0
votes
1answer
20 views
Rails3 ActionView TagHelper
I want to get output as html like
<div>
<div/>
<a/>
</div>
For this I wrote the ruby code as follows
content_tag :div, '', class: 'handle' do
content_tag :div, class: ...
0
votes
2answers
54 views
How to render images in rails3 select
I want to render dropdown list in form with images as options. How to achieve this in rails3?
0
votes
0answers
34 views
“translation_missing” when using default_locale
I'm trying to show a text in spanish using locales, but it keeps using english as default. My code:
# config/application.rb
config.i18n.default_locale = :es
# config/locales/es.yml
es:
sections:
...
0
votes
1answer
57 views
how to pass form_builder in jquery escape_javascript
I have two classes Message and Comment which is associated as follows
class Message ActiveRecord::Base
attr_accessible :comments_attributes
has_many :comments
accepts_nested_attributes_for ...
0
votes
1answer
97 views
How to include ActionView helpers in the assets pipeline?
How to include Rails view helpers to be accesible by assets pipeline execution context?
An example use case would be to generate the markup for a form, using form_tag helper method, and make it ...
2
votes
0answers
288 views
After updating rails 2.3.2 to 2.3.15 destroys scandic charset
We have problem with scandic charset.
We have localization file as *.yml and database which contains also some localization.
Problem is that when we use Actionview helper it destroys scandic charset ...
1
vote
1answer
48 views
How to get the automatically generated ID for an actionview form helper 'number_field' input?
I'm trying to retrieve an ID that is being generated for an input via the number_field actionview form helper.
I am updating some existing code which has the following input without a label:
<%= ...
0
votes
2answers
36 views
Rails form view with a send button
I have a form generated by scaffold in my _form.html.erb
<%= form_for @survey do |f| %>
<%= f.label :name %><br />
<%= f.text_field :name %>
<%= f.submit "Send", ...
0
votes
1answer
241 views
Rails console (and irb) can't use text helpers
Probably something wrong with my setup:
irb(main):001:0> truncate("Once upon a time in a world far far away", :length => 17)
NoMethodError: undefined method `truncate' for main:Object
...
0
votes
0answers
42 views
Why prompt option not working on update view?
I added in select box empty option - to add presence validation.
Here is this code:
<%= f.select :category, options_for_select([
"Banking",
"Computers",
"Recipes",
...
1
vote
1answer
54 views
Is there a way to override the AtomFeedBuilder updated_at value?
According to the documentation, an entry's updated value Defaults to the updated_at attribute on the record if one such exists. I'm trying to override the updated value, but instead I'm getting two ...
0
votes
2answers
97 views
Rendering link_to from application helpers
Im trying to render a dynamic nav menu using a application helpers but all get is a hash
when I load the page this is all that it displays
[#<Project id: 15, title: "downer", created_at: ...
0
votes
2answers
410 views
Show missing I18n translations in views
As stated in ActionView's documentation, the t view helper in Rails automatically mangles missing translations. Eg:
irb> helper.t('words.foo_bar')
=> "<span class="translation_missing" ...
0
votes
0answers
175 views
Adding html5 input fields to rails 3.1 app
I've found this pull request to rails https://github.com/rails/rails/pull/6359 and I'd like to make the datetime-local field available in my current rails 3.1 app. I assume this means overriding ...
0
votes
1answer
138 views
Zend: how do I share common code between view and action helpers?
I need a boolean from a combination of some configuration and a call to an external webservice.
The boolean is needed in the layout file of every view. It is also needed in a select few controllers.
...
0
votes
1answer
40 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?
1
vote
1answer
746 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 ...
0
votes
3answers
206 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
442 views
Rails - content_tag for table cell with rowspan
How would you translate this into a Rails content_tag?
<td rowspan="4">glah</td>
3
votes
2answers
681 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.?
2
votes
2answers
548 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 => ...
0
votes
2answers
192 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 ...
1
vote
1answer
398 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 ...
0
votes
1answer
131 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 ...
7
votes
4answers
1k 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 ...
1
vote
1answer
506 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('/');
0
votes
1answer
602 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 ...
5
votes
1answer
4k 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
1k 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
504 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 ...
3
votes
1answer
2k 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 ...
0
votes
1answer
44 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 ...
3
votes
2answers
3k 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 ...
12
votes
2answers
15k 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 ...
1
vote
1answer
2k 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 ...
0
votes
1answer
382 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"} %>
...
4
votes
2answers
4k 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 ...
4
votes
4answers
3k 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
76 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 ...
10
votes
1answer
14k 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 ...
4
votes
5answers
4k 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)
<%= ...
