Displaying 20 results from an estimated 100000 matches similar to: "error_messages_for broken in edge"
2007 Oct 03
3
Why does error_messages_for take string as param?
Hi,
I wonder why error_messages_for take strings as params instead of
instance variables.
error_messages_for ''user''
instead of
error_messages_for @user
''user'' is translated into @user eventually.
If so, who not take the instance variables directly?
Is there any reason for that?
Thanks in advance.
Sam
--
Posted via http://www.ruby-forum.com/.
2007 Oct 03
2
rails:freeze:edge task is broken [updating to 2.0]
On 10/3/07, Glenn Rempe <glenn.rempe@gmail.com> wrote:
>
>
> You may want to also take a look at this bug report that I filed. I
> had the same problem and running the ''rake rails:freeze:edge
> TAG=rel_2-0-0_PR'' TWO times resolved the issue for me when upgrading a
> 1.2.3 app. Explanation in the bug report.
>
>
2006 Apr 11
0
Problem w/ error_messages_for: wrong number of arguments?
Hi guys,
I just upgraded to the latest version of Rails 1.1 and am getting some
odd error messages. Specifically, I have the line:
<%= error_messages_for ''user'' %>
at the top of one of my .rhtml files and of course a variable @user.
When an error occurs when saving ''user'', instead of getting the error
message (which happened fine in Rails 1.0), I now
2006 Nov 04
0
Having problems with edge rails
I just switched to Edge Rails (revision 5207) since I want to use the
BigDecimal support for an e-commerce website.. Unfortunately, some of
my old code seems to be breaking things..
First off, it looks like my "skip_before_filter :check_authentication,
:check_authorization, :only => [:login, :forgot_password]" doesn''t
work at all, since the before_filter gets executed for
2005 Sep 06
1
error_messages_for - different controllers, one view [revisited]
Hi there,
some time ago there were two posts on this subject on this list:
One way that might satisfy the elegence factor is to treat your
> comment controller as a component in this case, calling
> render_component within your post controller where you need to process
> the comment.
>
> http://manuals.rubyonrails.com/read/chapter/73
>
> There are a few ways you could do
2006 Aug 09
1
Clarification on error_messages_for
Just learning Rails.. So this is probably a noob question. My apologies.
Could anyone please give me a quick summary/example on the usage of
error_messages_for?
I have two tables/models, Group and GroupMembers. Obviously, a Group
has_many GroupMembers. I have a customized view which shows a list of
GroupMembers followed by a field and a button which facilitates adding a
member to the group by
2006 Nov 04
1
error_messages_for ''a''
hi all,
i have two models in single form and i want to display error messages for
both on submission
when i do something like this i get an error
<%= error_messages_for ''a'' %>
<%= error_messages_for ''b'' %>
can anyone tell me how can i do something like this
thanks in advance
regards
gaurav
-------------- next part --------------
An HTML
2006 Jun 21
2
error_messages_for not displaying validation errors
Hi all,
I''ve been searching the web and the list archives for help on this and I''ve
found some tips, but I''ve been racking my brain on this for hours.
I have a Model, View, and Controller that are handling the uploading of a
file to my server. I want to make sure that the description is set and that
a file is selected to be uploaded. I have set validates_presence_of
2006 May 03
1
error_messages_for when saving within another model
Hi,
I have this save routine:
def customer_address_create
customer_options
@customer = Customer.find(params[:id])
@customer.addresses.create(params[:address])
@saved = @customer.save
end
That passes to a rjs template like this:
if @saved
page.visual_effect :Fold, ''add_address''
page.replace_html ''addresses'', :partial =>
2006 Jul 29
0
error_messages_for - Custom formating
Hi all,
I am trying to change the default formatting for the error_messages_for.
To quote from the ROR manual:
///////////
error_messages_for(object_name, options = {})
Returns a string with a div containing all the error messages for the
object located as an instance variable by the name of object_name. This
div can be tailored by the following options:
header_tag - Used for the header of
2006 Jun 07
0
problem with error_messages_for
Hi everyone,
I have this weird problem where error_messages_for isn''t working.
I have a model group which has to validates constraints..
---------------------------------
class Group < ActiveRecord::Base
#directionality points to the user model
#this table contains the foreign key
belongs_to :user
validates_uniqueness_of :name
validates_presence_of :name
end
2006 Jan 23
2
Problems with error_messages_for
I have a model Area which has_many Streets. The Area has a couple of
attributes of its own but mostly I want to be able to add/delete/update
Streets for a particular Area, but all on one page rather than having a
separate view for editing a Street. I''ve managed to get a form
displayed with a row for each Street already assigned to the Area by
using form fields with
2006 Jul 24
6
error_messages_for not working
I have the following code and I am not able to get it working. The error
message is not coming on the top, it is just getting displayed on a
different page if I dont have the rescue block commented at the bottom.
Model: user.rb
require "digest/sha1"
class User < ActiveRecord::Base
validates_presence_of :eaddress, :fname, :passwd, :pcode, :country,
:day, :year, :month, :gender,
2006 Jun 20
2
Validation error_messages_for problem
I am having trouble getting error_messages_for to work.
My controller(relevant parts) looks like
def configure
@account = session[:account]
@user = User.new
end
def add_new_user_to_account
@user = User.new(params[:user])
if @user.valid?
session[:account].users << @user
end
redirect_to :action=> ''configure''
end
end
and my
2006 Jul 17
0
error_message_on / error_messages_for
Hi,
just a simple question between error_message_on / error_messages_for ...
Well, if you use error_messages_for in your web page, there is no
problem even if anObject==nil (for example , the first time you load
your form) whereas error_message_on must be use with an instanciated
object ...
So, you always has to double check if anObject is not nil before using
error_message_on ?
I
2006 Jan 11
0
error_messages_for >> Cannot convert Array into String
Hi all
I have the following Model:
Member(id, username, first_name, last_name, hashed_password,
password_salt)
Now I want to allow users to register for an account using the following
form:
---
<%= form_tag %>
<%= error_messages_for ''member'' %>
<p><%= _(''Username'') %>: <%= text_field(''member'',
2006 Oct 13
1
Edge rails, single table inheritance and keeping multiple classes in a single file
So is the official stance as per edge rails that multiple class
definitions must go into separate files? I was trying to use STI with
acts_as_attachment, to have all my attachment classes go into a single
file, for example:
attachment.rb
class Attachment < ActiveRecord::Base
end
class UserPicture < Attachment
belongs_to :user, :foreign_key => ''owner_id''
2006 Mar 21
0
Automatic namespacing of custom Rake tasks
As you know you can create your own .rake files in lib/tasks and
Rails will automatically find them - as Rake 0.7 adds namespace
support and Rails is already taking advantage of these namespaces if
you are on Edge Rails I thought it would make a lot of sense if Rails
automatically namespaced your own custom rake files, so I raised a
ticket for this and I''ve now implemented it
2006 Jul 17
2
error_messages_for ?
Hi,
I can''t list error_messages in my Form ??, and all the formfields are
reset ...(I think my redirect :back clean everything, formfield and
error_messages ...), only my flash[:notice] is ok....
I would like to use the "error_messages_for" tag to add a simple red *
on my textfiled if a problem occurs ...
thanks for help
arnaud
here are the basics steps to check that
2006 Jun 13
7
help with ''error_messages_for''
Greetings,
I''m in the throws of deploying an app on site5, and I''m getting strange
errors. I think I might need to understand how error_messages_for
works.
I get a pretty standard looking error:
"
You have a nil object when you didn''t expect it!
You might have expected an instance of ActiveRecord::Base.
The error occured while evaluating nil.errors
Extracted