function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jonathan Meltzer 8Jonathan Meltzer 8 

How do you create a Visual Force tab that contains a separate List View from the main tab?

I have created a VF tab that contains a VF page that has an enhancedList in it.  The controller used for the enhancedList is "Case".  The tab shows up in my app, and I click on it, but even though I am shown the correct list view, I am on the main Cases tab, not the tab that I clicked on.

However, the requirement is for the custom Tab to exist OUTSIDE of the main Cases tab.  The custom tab is set up to refresh every X seconds (defined in javascript in the page using setTimeout("location.reload(true);",20000);), and I want the user to be able to select a DIFFERENT list view in their main Cases tab if they want, while still being able to see the contents of the custom VF tab.

Is this possible?  Can you have two tabs for essentially the same object, one with list view A and one with list view B (or no list view at all)?