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
hermitagehermitage 

Access to List View

Hi,

Can we get access to listviews in our Org for client API?, if it is possible, can anyone suggest me how or any related decument will be helpful.

thanks

jeffdonthemic2jeffdonthemic2

You can get access to some Listview functionality via the Metadata API.

 

Good luck

 

Jeff Douglas

Appirio, Inc.

http://blog.jeffdouglas.com

 

Author: The Salesforce Handbook

Pradeep_NavatarPradeep_Navatar

You can use the apex listview component to access the list view.

 

Refer the following sample code :

 

<apex:page showHeader="true" tabstyle="Case">

<apex:ListViews />

<apex:ListViews />

</apex:page>                                       

 

Hope this helps.