Validates_presence_of

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

Hi

Thank you, that worked

On Mar 18, 1:20 pm, Andrew T. [email protected]