HTML and Ruby templates used in [tag:ruby-on-rails]
0
votes
0answers
9 views
How to customize file_field as link in rails3?
I rendered file_field in my app. This shows a button followed by a label 'No file choosen'. But I want to render this as a link without the label. How to achieve this?
0
votes
1answer
31 views
Give a 404 instead of a 500 error for missing templates
I have a Rails 3.0 app (working on a 3.2 upgrade) and whenever someone requests a template that doesn't exist it gives a 500 error in production. For instance mysite.com/blog_posts/532 sends the post ...
0
votes
0answers
138 views
Rails: AJAX not working with form Create Action
This is a simple grocery list app. Left column div is a list of lists. Items for a particular list are displayed in the right column div.
Here's the process:
A user clicks on one of the lists, which ...
0
votes
1answer
15 views
Override 'field_with_errors' on a per view basis
I know you can override ActionView::Base via the methods posted in this question:
Rails 3: "field-with-errors" wrapper changes the page appearance. How to avoid this?
However, I'm ...
0
votes
1answer
54 views
ActionView::MissingTemplate - AJAX related error
The left column div is a list of lists. I'm trying to use AJAX to add a new list. I'm following the screencast http://railscasts.com/episodes/136-jquery-ajax-revised but I am getting an error. It ...
1
vote
1answer
31 views
Some of my locals are not passed to my partial
I encountered a very strange problem.
Consider the following code snippet:
<%= render partial: 'my_partial', locals: { a: 1, b: 2, c: 3 } %>
And the partial
<%= a %>
<%= b %>
...
0
votes
2answers
74 views
hide view and shows another with the clickof button with extjs
i have a login view after i click connect button i want that the login form desapper and the main view will be shown.
i have a login view after i click connect button i want that the login form ...
0
votes
0answers
26 views
How do I figure out which template file Rails 3.1 can't find?
Everything runs fine in development mode locally, but when I push the app to
a linux box running nginx+passenger, it has trouble finding templates. Now I
should also point out that I'm following the ...
0
votes
1answer
21 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: ...
1
vote
0answers
35 views
Silence ActionView::Template::Errors, like “isn't precompiled”
my question is about the standard behavior of the action-view gem when using the rails asset-pipeline.
It throws an Exception and the app-execution stops whenever there's an image which isn't ...
0
votes
0answers
52 views
ArgumentError (3 for 1) in Rails ActionView::Helpers::TextHelper when running rspec tests
I am in the process of upgrading our test suite to Capybara 2.1, and am running into the strangest issue when running the test suite.
Using:
ruby 1.9.3p392
rails 3.2.12
rspec 2.13.0
capybara 2.1.0
...
-1
votes
1answer
109 views
ActionView::Template::Error (undefined method `each' for nil:NilClass)
I have a strange problem. I'm running a rails server local, everything works great. But when I tried to clone the rails server in a cloud server (amazon aws), one controller don't work.
I'm kind of ...
0
votes
0answers
26 views
What's the reason for errors on helper tests after using Bundler?
I recently started using Bundler with Rails 2.
The Rails-related gems I'm using now are:
rails-2.3.18.gem
actionmailer-2.3.18.gem
actionpack-2.3.18.gem
activerecord-2.3.18.gem
...
0
votes
0answers
11 views
How do I render another template from an ActionView::TemplateHandler?
I have a custom template handler that needs json to properly render a template. Rather than build this json manually, I'd like to use the same json I'd get from calling render :json in a request's ...
1
vote
1answer
10 views
How to display ActionView::Template::Error in my views
I want to display the error message from any ActionView::Template::Error in my views.
I have those error messages only in my terminal like:
ActionView::Template::Error (No route matches ...
0
votes
1answer
58 views
How do I implement a to-do list style layout? [closed]
I'm building a simple to-do style application which has 2 main sections below the header: a navigation column on the left and the main section next to it on the right. Within the left nav, I want to ...
0
votes
0answers
38 views
ActionView::MissingTemplate in Home#index
I'm trying to render brands table details but is is showing the missing partials error.
I've copied the error here.
ActionView::MissingTemplate in Home#index
Showing ...
1
vote
1answer
46 views
How do I delegate to a model's to_builder method from a JBuilder view?
Let's say I have a Person class and a Gang class
class Person
belongs_to :gang
attr_accessible :name, :secret
def to_builder
Jbuilder.new do |app|
person.id id
person.name name
...
0
votes
1answer
38 views
Wich place is best to put my javascripts in ROR
My application structure looks like this
myapp
app/assets/javascripts/admin/admin.js
app/controllers/admin/admin_controller.rb
app/views/admin/new.html.haml
app/views/admin/new.js.haml
I am ...
4
votes
2answers
145 views
Rails: execution expired on time_zone_select
The following exception comes up intermittently:
An ActionView::Template::Error occurred
execution expired
...
0
votes
2answers
56 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
36 views
Using Rails' ActionView templating for external controllers&views
I'm working on a RoR3 application, and I'm striving to make the core functionality completely independent from the business logic: I've managed to generalize most of it into mechanisms that use on-db ...
1
vote
1answer
78 views
How to render the same 404 page for all unknown requests, including images, in Rails 3.2 without specifying each file format individually?
We use the following catch-all route in routes.rb for 404s:
# Catches all 404 errors and redirects
match '*url' => 'default#error_404'
But this generates a 500 internal server error below ...
0
votes
1answer
162 views
Undefined method `remember_token=' 'find_by_remember_token' - Chapter 8 Ruby on Rails Tutorial
I am trying to complete the Ruby on Rails Tutorial by Michael Hartl and I am stuck on Chapter 8. I am getting the same two errors when I run my tests:
NoMethodError: undefined method ...
1
vote
2answers
104 views
Internal server error 500 on missing image file (Rails 3.2.12)
If we request a bogus image file, Rails generates an internal 500 server error instead of a 404. See the log below.
Here is the line in routes.rb that catches 404s:
# Catches all 404 errors and ...
0
votes
1answer
103 views
Missing template for render user/new
I have a problem when trying to render a controller action. Following the documentation I should be able to use:
render 'user/new' or
render template: 'user/new' or
render :action => "new", ...
2
votes
1answer
78 views
Permission Issue on Ubuntu with Rails App
I have a permission issue with Rails on my Ubuntu / Apache / Passenger server.
When I look in my Apache error_log file, I see:
ActionView::Template::Error (Permission denied - ...
0
votes
0answers
35 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
83 views
Rails 3.2.x render another template view with specific id
I am attempting the follow string of code:
class AppointmentsController < ApplicationController
def create
@appointment = Appointment.new(params[:appointment])
@current_patient = ...
2
votes
1answer
36 views
Is it possible to get a list of available layouts in rails (including those from engines)?
I'm allowing admins to choose a different layout for their page. Right now it's just a text input and they type the name in. This means they have to know the name in advance.
If they make a typo it ...
0
votes
1answer
41 views
Actionview::Template::Error with stripe when pushed to heroku
Folks,
I'm attempting to deploy a rails webapp on Heroku using Stripe. This might be a precompiling asset problem. I checked the heroku error logs and there is an actionview template error ...
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
127 views
Ruby 1.9.3 encoding
I was using ruby 1.8.7 and rails 3.2.11 for more than year and I developed my application using it, when I upgraded my ruby version to 1.9.3 these issue raised
incompatible character encodings: UTF-8 ...
1
vote
2answers
85 views
ActionView Ruby Code Not Evaluating in HAML
I have the following Rails code in a HAML view:
= form_tag ..... do
- @someArray.each do |age|
= age
= check_box_tag "ages[#{age}]", @keys.has_key? age ? checked : unchecked
What I'm ...
0
votes
1answer
67 views
Rails: change render view paths for ONE render call
I want to change view paths for render call (partial):
vp1 = ActionView::PathSet.new
vp1.prefixes << 'bla1'
render partial: 'abc', view_paths: vp1
vp2 = ActionView::PathSet.new
vp2.prefixes ...
0
votes
0answers
42 views
In Rails 3, how do I construct a form and :new/:create actions for a model that belongs_to another model through a polymorphic association?
Let's say I have a model, Event, and it belongs_to either of two other models, Group or Company, in either case through a polymorphic association. What is the best way to construct a non-nested form ...
1
vote
1answer
53 views
Cannot solve “ArgumentError: Missing block” when calling form_for in Rails namespaced Controller
In the admin panel of an app, there should be a new form introduced. I wanted to make use of 2.3 Relying on Record Identification as described in RoR Guide, but if I say
form_for(@product)
or
...
0
votes
1answer
62 views
Real prompt in drop-down select boxes for rails
In Rails (3.2), for a form I want to add an "Please select an entry" text to a select box, I learned that I can achieve this via
= f.collection_select(:product, Products.all, :name, :id, ...
0
votes
1answer
35 views
Restricting which MIME types a template will render in Rails
Given:
A FooController with a bar action
An ActionView template handler for the custom extension
A template at app/views/foo/bar.custom
Is there a way to make Rails render that template only for ...
0
votes
2answers
53 views
Customizing what url_for returns for a model?
I have a post model that has many comments. Now a link to a comment is actually a url like so /post/1?page=3#26.
What I want to be able to do is call link_to "foobar", @comment and have it generate ...
0
votes
1answer
93 views
Rails 2 Render ERb template in controller?
This code in the controller
av = ActionView::Base.new(Rails::Configuration.new.view_path)
av.extend ApplicationHelper
content = av.render(:file => "show", :locals => { :user => @user })
...
0
votes
0answers
58 views
how to evaluate specific view helper in rails
I have a problem that I have a doubt how to solve. I need to render or view with all the partials or render only one helper output. I dont want to separate this helper to partial or set if-else ...
0
votes
2answers
676 views
Ruby on Rails View inserting js.erb file via render
For including a piece of javascript that I only need on some pages, I put
= javascript_tag do
= render "inserts_js_enhanced_element.js.erb"
in my haml file.
Now I get the warning in my tests:
...
0
votes
2answers
62 views
Rails ERB view syntax issue
I apparently can't get the syntax proper here:
<table width="100%" border="0" cellspacing="0" cellpadding="20" background="<%= #{Rails.root}/app/assets/images/image.png %>">
What's the ...
5
votes
1answer
193 views
Why rails_admin route only work in link_to and not in 'render'
I am trying to use rails_admin route in two ways
= link_to "Users", rails_admin.index_path(:model_name => 'user')
= render rails_admin.index_path(:model_name => 'user')
First one works fine, when ...
0
votes
0answers
110 views
How to render rails_admin view from my app
I am configured my application with rails_admin. I want to render rails_admin user detail page from my app.
In my javascript I render the partial user detail view like this
...
0
votes
1answer
58 views
How to pass param['id'] to the index page
I am trying to render the user detail on index page when user is clicked.
I am having the list of users in index page like
<% @users.each do |user| %>
<%= link_to user.name, '', {:id ...
1
vote
1answer
226 views
Rails 3.2 ActionView::Template::Error javascript_include_tag
I have a perfectly working dev environment on a windows 7 laptop. Today, I got a new windows 8 laptop and trying to set up the dev environment on it. Installed rails etc and created new sample app and ...
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
0answers
106 views
Android: How to open specific contact?
I have a String name ="Meg" in my App and when i press the Contact Button, I open the contacts like this:
Intent i = new Intent();
i.setAction(Intent.ACTION_VIEW);
...