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
KunlunKunlun 

Is it possible to make visual force page which user can create list view

Hi All,

 

We can create list view in account tab, contact tab. Is it possible to create a visual force page that user can create list view there?

 

Thanks

Kunlun

kiranmutturukiranmutturu
yes you can...
try
<apex:page >
<apex:enhancedList type="Account" rowsPerPage="25" customizable="true" height="300" reRender="true"/>
</apex:page>

here you can access existing views as well as create new and access from the same from vf page