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
Salesforce_PMPSalesforce_PMP 

Using "Dependent Picklist" type of functionality for List Views

For example on Cases tab, I like to have a dropdown that has value "Email". That opens up a dependent picklist with values (Email-Source-1, Email-Source-2 ..). The user first selects "Email" from the main dropdown and then selects value "Email-Source-1" from dependent dropdown and clicks button "GO". Then the list view displays only those records (i.e. email cases for a particular product). And it needs to have all the same functionality that the out of box list view has (action links, buttons, sorting etc.). Is this feasible to do and if so how?

Ispita_NavatarIspita_Navatar

The list views on the object's tab are standard salesforce functionality, and any customization w.r.t. filtering the lists being displayed based on the selections made by the user in a dependent picklist is not possible , unless you build a custom VF page and override the object tab with this VF page thus created.

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.

Salesforce_PMPSalesforce_PMP

Thanks for the response. Does anybody have a sample code that can do this?