johnsontitusMay 30, 20201 min readVisualforce uses RemoteObjectModel to retrieve datahttps://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_remote_objects_example_simple.htm?search_text=remote
johnsontitusMay 20, 20203 min readConsiderations whilst writing Visualforce pageUsing ApexPages.message to display error message for users User custom controller when the page needs to be run in system mode A...
johnsontitusMay 15, 20201 min readReference to a page in Visualforce//refererence to google page PageReference pageRef = new PageReference('http://www.google.com'); //reference to the saved Visualforce...
johnsontitusMay 14, 20201 min readTo display a table of data in Visualforce pageuse datatable, pageblocktable, datalist or repeat
johnsontitusMay 12, 20201 min readHow to apply lightning stylesheet onto Visualforce page?Add the attribute lightningStylesheets="true" in the <apex:page> Put all visualforce elements in the html body - <body...
johnsontitusMay 12, 20201 min readVisualforce page in a dashboard<apex:page controller="retrieveCase" tabStyle="Case"> <apex:pageBlock> {!contactName}'s Cases <apex:pageBlockTable value="{!cases}"...
johnsontitusMay 12, 20201 min readListing data on Visualforce with customized look n feeldatatable <!-- For this example to render fully, associate the page with a valid account record in the URL. For example:...