Tagged Questions
1
vote
1answer
13 views
Is it possible to skip a save but not throw an error with a Rails validation
The question sums it up. Is it possible to have a custom validation respond by simply not saving a record, rather than throwing an error? As far as I know, the only way to write a custom validation is ...
0
votes
1answer
15 views
Get validation errors on a partial's form
So I have a form in my Rails app that's on a _form.html.erb.
I'm displaying this partial on every page of my site, so it doesn't really have any model logic behind it, and the User created form it is ...
0
votes
2answers
35 views
Rails best practice when embedding a signup form on every page
I have a User model with some validations behind it.
What I'd like to do is have a signup form on every page of the app, even the mostly static ones.
I figured the best way to do this would be ...
2
votes
2answers
75 views
Rails validation for has_one relation
I have two model like:
class Employee
field :name
field :login, type: Boolean
has_one :user
end
class User
field :username
field :email
belongs_to :employee
validates_presence_of ...
0
votes
1answer
35 views
Rails - How can I sum all the fields and use the sum as a validation before entering values in database?
I have a form containing multiple fields that have integer inputs. I have basic validation on the fields like presence, inclusion, and numericality. The part that I am stuck at however is checking ...
0
votes
2answers
39 views
Rails: Conditional Validation & Views
What I'm thinking right now is...
I have a library full of books (entries). Each book has many checkouts (embedded document).
What I think I want to do is, upon checkout, make a new "checkout" as an ...
0
votes
1answer
29 views
Rails: Unable to route to edit page when a new nested item fails validation
I have a nested item whose creation form lies in the show view of its parent. In this case it is a single achievement (achievement_item) on an achievements list (achievement).
Everything seems to ...
0
votes
1answer
31 views
Is this a bug in Rails validations or am I doing something wrong?
This involves validations on a join table, validating the activerecord on either side of the join against each other. It seems to not behave as expected, allowing a violation of the validation.
I ...
0
votes
0answers
24 views
Rails:Can we perform data validation on the controller side for a UI wizard?
I have a rails application where I pre-process some data fetched from a service call. I retain this data in the session.
Further, I maintain other pieces of data in the session variables as to which ...
0
votes
1answer
44 views
Ruby: create a parent only if at least 1 child exists
I have a parent - child relationship between Repairs & RepairItems.
A repair must have a least 1 RepairItem to be saved. I've made a nested (simple) form to create a Repair and display 3 blank ...
0
votes
1answer
26 views
Displaying invalid attribute before type cast
I have a model with date attribute. I built a custom validation using [attribute]_before_type_cast so that a date like '31.02.2013' make validation failing.
The problem is that:
@invoice.order_date ...
0
votes
1answer
35 views
Active Record Error messages form_tag Rails 3
I have a validation in my model like so
class Prediction < ActiveRecord::Base
attr_accessible :home_team, :away_team, :home_score, :away_score, :fixture_date, :fixture_id, :user_id
has_one ...
0
votes
1answer
53 views
Check if record exists in Model Rails
I was wondering if i would need to create a custom validation for the following scenario.
I have a Prediction model, in which a user submits their predicted scores for a set of football matches, they ...
0
votes
2answers
24 views
Auto generate models on creation of other models in Ruby on Rails
I have a model called Video that has many statuses. I want to create a status of each kind and add it to @video.statuses in the def create of VideosController.
In VideosController, I have:
def ...
0
votes
2answers
26 views
ruby conditional validation has_and_belong_to_many
I am having two models, User and Role,
In Role Model:
has_and_belongs_to_many :users
In the User model,
has_and_belongs_to_many :roles
validates_presence_of :name, :if => ...
0
votes
1answer
30 views
How do I validate an attr based on whether a checkbox is checked in Rails?
I want to validate the presence of a shipping_address unless it's the same as the billing address. I wrote a attr_writer for it. I want to initialise with object with this attr checked.
class Order ...
1
vote
1answer
25 views
how to validate that email used during registration ends in a specific format?
I'm using this inside my user.rb model
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX },
uniqueness: ...
0
votes
1answer
23 views
Rails form validation does not work if form is initially hidden
I am having a weird issue with rails form validation. Currently the validation works fine if the form is visible when the page loads but nothing happens if the form is initially hidden and displayed ...
0
votes
1answer
15 views
client_side_validations and devise error messages
Im validating a form with client side validations and I also have devise,
this is in my form:
<fieldset>
<div class="control-group">
<%= f.label :current_password, "Old ...
0
votes
0answers
30 views
RSpec Shoulda validates_presence_of nilClass
When I use Shoulda's validates_presence_of, it stumbles on a before_validation callback.
before_validation :set_document, :set_product, :set_price
I'm trying to get this spec to pass:
it { ...
0
votes
2answers
16 views
Rails - How to disallow specific inputs in model validations?
My User model has an attribute called :profile_name which is used in routing profile page url's - domain.com/:profile_name . In order to prevent collision with my other views I want to make sure a ...
0
votes
0answers
17 views
child errors do not appear in parent using accepts_nested_attributes_for (2.3.18)
Again I ask for your help with this issue after searching for a while
for a solution to no avail.
In a nutshell I find that accepts_nested_attributes_for fails to report validation errors for all of ...
0
votes
1answer
35 views
Validation after database submission
I have a payments model as follows:
class Payment < ActiveRecord::Base
attr_accessible :amount, :method, :payment_date, :reference_no, :invoice_id
belongs_to :invoice
validates :amount, ...
0
votes
0answers
19 views
ActiveRecord: different custom validators for a model, depending on action
I wish for my records to the validated differently depending on the context (controller action) in which they are used.
Certainly, I can make a custom function and therein manually add values to the ...
0
votes
1answer
36 views
Using a default validator in custom validations
What I am basically trying to do is to create a custom validation which calls a RoR default validation with specific options to try and reduce boilerplate (and have this validation to be used globally ...
0
votes
1answer
39 views
Carrierwave Translation Missing on Validation File Size
I try this https://gist.github.com/chrisbloom7/1009861 for validate file size on carrierwave
I have created lib/file_size_validator.rb
I have put some transalation to file yml (wrong_size, ...
1
vote
1answer
52 views
rails activerecord save associated model which has uniqueness validation
I am a newbie to rails. Today I met a problem to save associated models.
I have 2 models with the following association, The Tag model has a validation role for attribute 'name' to be uniqueness.
...
2
votes
1answer
42 views
Rails validate uniqueness of date ranges
I have an application that involves absence records for employees.
I need to ensure that the start and end dates for each record don't overlap.
So for example, if I entered an absence record that ...
0
votes
1answer
54 views
How to simply validate a checkbox in rails
How do you simply validate that a checkbox is checked in rails?
The checkbox is for a end user agreement. And it is located in a modal window.
Lets say i have the checkbox:
<%= check_box_tag '' ...
1
vote
1answer
21 views
Validating a conditionally displayed field in Rails
I have a Competition and a Competition Entry model, the former includes a form and an optional "Question" field which isn't displayed if the admin user doesn't fill it out.
The Competition Entry ...
0
votes
0answers
21 views
Sub validate does not work
I have two class Matrix and Cell. Matrix is Active record class, Cell - is not. Matrix have cells - it's Postgress Array of int, any cell can convert to int.
I need to test all matrix cells is ...
0
votes
0answers
56 views
rails3 user can only vote once per day
class Rate < ActiveRecord::Base
attr_accessible :image_id, :rate, :user_id
belongs_to :image
belongs_to :user
validate :user_can_rate_after_one_day
before_save :default_values
def ...
0
votes
2answers
36 views
Write rule in Cancan or model validation?
Update: After reading the answers, I think I should rephrase my question (as question 3)
From time to time I get confused as to where I should write a some conditional check: in Cancan ability or in ...
1
vote
1answer
37 views
Custom validator does not load in Ruby on Rails
I am trying to apply a custom validator to my model issue.rb:
class Issue < ActiveRecord::Base
attr_accessible :description, :no_followers, :title
validates_presence_of :title
...
1
vote
1answer
75 views
Rails accepts_nested_attributes_for validation on transactional object
I'm struggling since some hours in order to make validations of nested attributes work in my rails app. A small caveat is that I have to validate nested attributes dynamically based off of their ...
0
votes
2answers
31 views
Problems with conditional validation in ActiveRecord
I have to conditionally validate my User. After user registers, he can complete the rest of his profile. It's split into parts, so, for example, there is "Educational background" and "Professional ...
0
votes
1answer
56 views
Validate the format of a string of comma separated words with regex
I'm trying to validate a string of comma separated words from a text field in a ruby class using regex. The following should be valid:
word
word, word, word
word,word,word
And the following ...
0
votes
1answer
91 views
Nested Model validation errors show on create but not update
I have a Developer model that :has_one User model. This allows for authentication and stuff across different user types.
When I create a new Developer with incorrect User data, it renders the list of ...
0
votes
2answers
42 views
Model Validations Failing with FactoryGirl Rspec, Validations Seems To Be Ignored
I am having an issue with my Rails Model validation tests. The validation is functioning properly (it rejects incorrectly formatted emails) but the tests are failing.
Here is my important ...
0
votes
1answer
47 views
How to validate a jquery autocomplete in my Rails App?
My very simple Rails App has a Model with two methods:
:From
:To
I use the awesome (Google Maps API) powered address-rails-picker app for the :to and :from in the form to automplete any location the ...
1
vote
1answer
40 views
Getting “ActiveRecord::UnknownAttributeError: unknown attribute: email_confirmation” Error with rspec
I am running into this error when running my tests. I have checked to make sure all the email_confirmations are spelled correctly and (unless I am crazy) they are. I'm a bit of a Rails noob, so it ...
0
votes
0answers
32 views
Shoulda and testing validation of minimum length of relations
I have such code in my model:
has_and_belongs_to_many :items, :uniq => true
validates :items, :length => { :minimum => 1 }
attr_accessible :items_ids
So the problem is, I can't test it ...
0
votes
0answers
117 views
Ruby Rails multiple virtual attribute single database field
Writing a ROR application in which a single database field (longitude) is to be displayed as multiple screen fields (long_degrees, long_minutes, long_seconds, long_direction). I am currently ...
0
votes
1answer
58 views
“Template is missing” error. Missing Template Create
I try to displaying Validation Errors in the View for create new article page. I have validation in article model for check body and title presence ( validates :title, :body, :presence => true). It ...
0
votes
2answers
69 views
Rails “assign_attributes” not assigning nested models
I have two models with the following structure:
class Wallet < ActiveRecord::Base
include ActiveModel::Validations
has_one :credit_card
accepts_nested_attributes_for :credit_card
...
0
votes
1answer
40 views
Rails STI on nested model
I have a question about STI in rails that I cannot seem to get my head around.
I have 2 models, order.rb
class Order < ActiveRecord::Base
has_many :answers
end
and answer.rb
class Answer ...
0
votes
1answer
38 views
Model Validation - Must have at least one of two attributes
I have a model in which two fields are validated, but only one of them is mandatory.
I wrote the following validation, but it's not working:
validates_presence_of :results, :on => :update, :if ...
2
votes
1answer
117 views
Client_side_validations gem not working in rails 3.2.13
I've spent quite a while trying to get client_side_validations gem to work, but no text is showing up and no script tags are being injected after the forms. I have tried it with both the standard form ...
0
votes
1answer
96 views
Rails 3 fail validation for parent model is validation of nested attributes fail
I have two models, User and House. They have one-to-one association.
class User < ActiveRecord::Base
attr_accessible :name, :house_attributes
has_one :house, :dependent => :destroy
...
2
votes
0answers
50 views
Nested Attributes: unwanted validation despite of reject_if : All_blank
I am new to rails so any advise is greatly appreciated.
I have a class Entry with nested attributes Addresses,
/app/models/entry.rb
class Entry < ActiveRecord::Base
has_many :addresses, ...


