[Rails] How to integrate NING login in my website

2010-06-15 Thread Amal Kumar
Hi, Has anyone implemented NING login. Is there any API for this, I googled a lot but couldn't find a solution for this. could anyone provide some sample code or something like that. Note: I need to login with NIng details into mysite. -- You received this message because you are subscribed

[Rails] Re: exception handling

2010-04-27 Thread Amal Kumar
Hi, In application controller rescue_from ActiveRecord::RecordNotFound,ActionController::RoutingError, ActionController::UnknownController, ActionController::UnknownAction, ::NoMethodError, :with => :handle_exception # To handle Exceptions def handle_exception

[Rails] Re: How to add radio buttons?

2010-02-17 Thread Amal Kumar
Hi, <%= radio_button :contact_preference, "0", :checked => true, :tabindex => "1" %>Email <%= radio_button :contact_preference, "1", :checked => false, :tabindex => "2" %>Phone something like this will do. Thanks Amal On Feb 17, 10:57 am, Veena Jose wrote: > Hello friends, > > Can u plz tell

[Rails] Re: remember_me_for in authlogic

2010-02-09 Thread Amal Kumar
Hi, me too have the same problem could someone help us. Thanks in advance Amal -- 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-t...@googlegroups.com. To unsubscribe from this group, sen

[Rails] Re: ruby with ajax problem

2009-08-13 Thread Amal Kumar
In Application controller Try to comment the line # protect_from_forgery # :secret => 'dasdas5484565asdasda' I too had a similar type of error when i commented that line it worked.I dont know if this could be a solution for your problem. Any ways lets give a try. --~--~-~--~~