Hi I don''t know how to get rid of this error... I need some help to understand how to rewrite it this action is executed from a remote_form (facebox style), and I want to keep also the html degraded call is this issue coming from the close_facebox + redirect_to ? def update @auth_source = AuthSource.find(params[:id]) respond_to do |format| if if @auth_source.update_attributes(params[:auth_source]) flash[:notice] = I18n.t(:notice_successful_update) format.html { redirect_to :action => ''list'' } format.js { close_facebox; redirect_to :controller => ''settings'', :action => ''index'', :tab => ''authentification'' } else format.html { render :action => ''edit'' } format.js { render_to_facebox :partial => "/auth_sources/ edit"} end end end thanks for your suggestions --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Mar 29, 9:24 am, Erwin <yves_duf...-ee4meeAH724@public.gmane.org> wrote:> Hi > I don''t know how to get rid of this error... I need some help to > understand how to rewrite it > this action is executed from a remote_form (facebox style), and I > want to keep also the html degraded call > > is this issue coming from the close_facebox + redirect_to ? >It depends - what''s in the close_facebox method? If it is doing a render or a redirect then yes, Fred> def update > @auth_source = AuthSource.find(params[:id]) > respond_to do |format| > if if @auth_source.update_attributes(params[:auth_source]) > flash[:notice] = I18n.t(:notice_successful_update) > format.html { redirect_to :action => ''list'' } > format.js { close_facebox; redirect_to :controller => > ''settings'', :action => ''index'', :tab => ''authentification'' } > else > format.html { render :action => ''edit'' } > format.js { render_to_facebox :partial => "/auth_sources/ > edit"} > end > end > end > > thanks for your suggestions--~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Yes , That''s the point.. I need to investigate a little bit more... but I commented the redirect , keeping only the close_facebox and that''s fine !! thanks for your tip erwin On 29 mar, 11:26, Frederick Cheung <frederick.che...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Mar 29, 9:24 am, Erwin <yves_duf...-ee4meeAH724@public.gmane.org> wrote:> Hi > > I don''t know how to get rid of this error... I need some help to > > understand how to rewrite it > > this action is executed from a remote_form (facebox style), and I > > want to keep also the html degraded call > > > is this issue coming from the close_facebox + redirect_to ? > > It depends - what''s in the close_facebox method? If it is doing a > render or a redirect then yes, > > Fred > > > def update > > @auth_source = AuthSource.find(params[:id]) > > respond_to do |format| > > if if @auth_source.update_attributes(params[:auth_source]) > > flash[:notice] = I18n.t(:notice_successful_update) > > format.html { redirect_to :action => ''list'' } > > format.js { close_facebox; redirect_to :controller => > > ''settings'', :action => ''index'', :tab => ''authentification'' } > > else > > format.html { render :action => ''edit'' } > > format.js { render_to_facebox :partial => "/auth_sources/ > > edit"} > > end > > end > > end > > > thanks for your suggestions--~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---