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
Yady Kalsi 9Yady Kalsi 9 

Display Command Button

This is my Visualforce page :
<apex:page controller="MyController">
<apex:pagemessages /> <br />
<apex:form > <apex:commandButton value="Sync Data" action="{!syncData}"/> </apex:form> </apex:page>

I want to show this command button in Accounts Tab. How to do it ?
Note: MyController is an apex class that has the logic that calls the JSON API and bring the data.

Thanks in advance.