You need to sign in to do that
Don't have an account?
User 444
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?
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>
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!!