I'm trying to render a view on form submit. Say I have a form, which is supposed to act as a filter. I'm rendering the form in a view and when the user hits submit, I want to re render (or perhaps render another view) with a collection of models that fit that filter. Such as they search for "ABC", I want a collection of all models that have ABC in the title.
Basically my question is, how to I fetch a collection in a view and render a 'subview' that would contain the contents of the collection?