How to call method in Apex without @RemoteAction
2. Call Method in salcesforce apex class without @RemoteAction
In Apex Class:
In Apex Class:
In salesforce Page:
public void saveRanking() { // you code here}
// call method from apex class by clicking on button
<apex:commandButton styleClass="slds-button slds-button--neutral btn-refresh" reRender="mainForm" status="loadingStatus" action="{!saveRanking}" value="Save">
</apex:commandButton>
Comments
Post a Comment