Hey guy,
I have been stuck on this problem and have no clue on how to solve it,
I am creating a site with real estate properties, I am using views to expose filters for people to narrow down their choices.
I wanted to add checkbox beside the results and perform a "filter properties" action which would clear the view and show only the results i have selected.
For example, i have 10 results, i select result #3, 4, 5 and i click on "Filter properties" then my view will refresh with only results #3, 4, 5.
Is this already somehow built in with VBO? How should i approach this problem,
Help would be much appreciated,
I am also trying to google posts/info about people facing similar issues, but i haven't been able to find anything, i think i was able to find some info on this a few months ago,
Thanks,
Tom
Comments
Comment #1
infojunkieThe action "Pass objects as arguments to a page" (views_bulk_operations_argument_selector_action) should allow you to pass the selected nodes to a new page, either the same view again or a new view. Your view needs to accept node IDs as arguments to filter the results. Note that you will need VBO 6.x-1.x-dev because 1.9 has a bug that prevents this action from working correctly.
To automate the redirection (avoid the intermediate page asking for the redirection URL), you can create an advanced action at admin/settings/actions/manage where you choose the action above and specify the redirection URL. In your view, you can then choose this new action.
Comment #2
infojunkie(double submission)
Comment #3
bojanz commentedSolution provided in #1.