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
sclosesclose 

Display a Listview ONLY in a visualforce page

Hello,

I have created a listview and I am able to display this view in a visualfroce page. Is there anyway to display only the list view meaning I don't want to see the side bar or header. Is this possible? See attachment.User-added image


Deepak Rama1Deepak Rama1
On your page try using the following:

<apex:page id="..." showHeader="false" sidebar="false" ... >
<....>
</apex:page>
SFDC_DevloperSFDC_Devloper
Hi,

  try below code..

Vf Page:
<apex:page showHeader="false" tabStyle="case">
    <apex:listViews type="case">
    <apex:facet name="header">&nbsp;</apex:facet>
    </apex:listViews>
</apex:page>

Output:
User-added image



Thanks,
Rockzz