Hi,

What you cannot do is mixing Ajax requests with full URL page requests

But what you can do is something like:

format.js {
          render :action=> search_show, :layout=>false
        }

Your search_show view will be rendered without any application layout
provided you're using the same content @variables..

Jan


On Jun 6, 2:25 am, badnaam <asitkmis...@gmail.com> wrote:
> Here is my use case
>
> I have a search model with two actions search_set and search_show.
>
> 1 - A user loads the home page which contains a search_form, rendered
> via a partial (search_form).
>
> 2 - User does a search, and the request goes to search_set, the search
> is saved and a redirect happens to search_show page which again
> renders the search_form with the saved search preferences. This search
> form is different than the one if step1, because it's a remote form
> being submitted to the same action (search set)
>
> 3 - Now the user does another search, and the search form is submitted
> via ajax to the search_set action. The search is saved and executed
> and now I need to present the result via rjs templates (corresponding
> to search_show). I am told that if the request is xhr then I can't
> redirect to the search_show action? Is that right? If yes, how do I
> handle this?
>
> Thanks

-- 
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, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to