Re: [Rails] Re: data is storing in database when i had created but it is destroyed after the sign out

2012-01-30 Thread Prince Joseph
You should not add 'self.save' to the method, as you are calling these functions in 'before_save'. It means these functions will be invoked before saving any object of that model. Calling 'self.save' inside it will result in an infinite loop. On Mon, Jan 30, 2012 at 11:44 AM, Kapil Kaligotla < kap

[Rails] Re: data is storing in database when i had created but it is destroyed after the sign out

2012-01-29 Thread Neethu Satheesh
Try following this thread, I have not it read completely. It may help you. http://www.ruby-forum.com/topic/3233401 - Neethu -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this grou

[Rails] Re: data is storing in database when i had created but it is destroyed after the sign out

2012-01-29 Thread Neethu Satheesh
Try following this thread, I have not it read completely. It may help you. - Neethu -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@google

[Rails] Re: data is storing in database when i had created but it is destroyed after the sign out

2012-01-29 Thread Kapil Kaligotla
Hi, Thanks for your quickest response, i had added the self.save but i am getting error as "stack level too deep" on submitting the profile form Thanks, Kapil On Jan 30, 11:03 am, Neethu Satheesh wrote: > Hi Kapil, > > Please try with self.save in your methods build_cell & build_telephone. >

[Rails] Re: data is storing in database when i had created but it is destroyed after the sign out

2012-01-29 Thread Neethu Satheesh
Hi Kapil, Please try with self.save in your methods build_cell & build_telephone. Eg : def build_cell self.mobile = "#{self.code1}-#{self.number1}" self.save end Thanks, Neethu -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Go