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
User 444User 444 

How to add create|edit list view in custom page of an object using VF.


I have been using below code to display list views in custom object page using VF.
But I want "Edit|create list view" in this custom page(same as standard page). How to do that?
<apex:selectList value="{!FilterId}" size="1">
                                            <apex:selectOptions value="{! listViewOptions}" />
                                            <apex:actionSupport event="onchange" reRender="leadRecs" status="loadingMsgStatusId"/>
                                        </apex:selectList>

 
AnkaiahAnkaiah (Salesforce Developers) 
Hi,

Refer the below link have solution for similar kind of ask.
https://salesforce.stackexchange.com/questions/32067/custom-list-view-to-display-vf-page

Thanks!!