This may not be the right way to do this, but I already made a "list" action with a view corresponding to it.
Now, I'm trying to make the "search" action, and I want it to use the view I made for list. What is the right way to do this?
Thanks
This may not be the right way to do this, but I already made a "list" action with a view corresponding to it.
Now, I'm trying to make the "search" action, and I want it to use the view I made for list. What is the right way to do this?
Thanks
Sean Clark Hess wrote:
This may not be the right way to do this, but I already made a "list" action with a view corresponding to it.
Now, I'm trying to make the "search" action, and I want it to use the view I made for list. What is the right way to do this?
Thanks
>
at the end of your search action, call... render :action => 'list'
Awesome, thanks