Hi all
I want to check the presence of either one of two fields for instance,
phone number or mobile number, if either one presents, allow the
submission of the form
validates_presence_of :phone, OR :mobile
any idea how to do it
Hi all
I want to check the presence of either one of two fields for instance,
phone number or mobile number, if either one presents, allow the
submission of the form
validates_presence_of :phone, OR :mobile
any idea how to do it
On Tue, Mar 17, 2009 at 11:09 PM, Shuaib85 [email protected]
wrote:
def validate
errors.add(:phone, “can’t be blank”) if phone.blank? && mobile.blank?
errors.add(:mobile, “can’t be blank”) if phone.blank? && mobile.blank?
end
or some variation of the above
Andrew T.
http://ramblingsonrails.com
http://www.linkedin.com/in/andrewtimberlake
“I have never let my schooling interfere with my education” - Mark Twain
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs