How to Create a Visualforce page to add List and Bisync Component in the Page layout

How to Create a Visualforce page to add List and Bisync Component in the Page layout

From the quick find box search for Visualforce Pages >> Click on new and

create a new Visualforce Page.


● If it is a custom object copy the API name of the custom object.

EX- Subject__c object API name


1. Label: XFPAccountList

2. Name: XFPAccountList

3. Enable the checkbox - Available for Lightning Experience, Experience

Builder sites, and the mobile app

4. Copy the code from below and make the changes as per standard/

custom objects



List component:



<apex:page standardController="Account" showHeader="false">

<XFILES:XFileList />

</apex:page>






1. Label: XFPAccountBiSync

2. Name: XFPAccountBiSync

3. Enable the checkbox - Available for Lightning Experience, Experience

Builder sites, and the mobile app

4. Copy the code from below and make the changes as per standard/

custom objects




XfilesProBiSync Component:



<apex:page standardController="Account" standardStylesheets="false"

showHeader="false"> <XFILES:XfilesProBiSync />

</apex:page>






How to add the component to the Page layout:


Go to the record page → click on EDIT page → Drag and drop the visual force component in the page layout → Search for the component create Ex: XFPAccountBiSync ,click on save.