
Display PDF from Lightning Web Component Quick Action
Visualforce page with renderAs="advanced_pdf" can be used in Lightning Web Component using iframe tag to render a pdf from Lightning Web Component Quick Action.

Record creation using JavaScript in Salesforce Visualforce Page
soap/ajax/54.0/connection.js library can be used to create records using JavaScript in Salesforce. There is no need to use Apex. Blog Post: https://www.infallibletechie.com/2022/06/record-creation-using-javascript-in.html

Pass record Id to Visualforce page in Salesforce Lightning Record Page
We can pass record id to Visualforce page in Salesforce Lightning Record Page, using Standard Controller in the Visualforce page. We can easily get record Id in a Visualforce page used in Lightning Record Page using Standard Controller. Blog Post: http

Navigate to a Visualforce page when the Salesforce Flow is Finished
We can use Lightning Out App and Visualforce page to navigate to a Visualforce page when the Salesforce Flow is Finished or Completed. Blog Post: https://www.infallibletechie.com/2022/09/how-to-navigate-to-a-visualforce-page-when-the-salesforce-flow-is-f

Visualforce Page Requires HTML docType version 5 0 or higher Exception in Salesforce
Blog Post: https://www.infallibletechie.com/2022/10/visualforce-page-requires-html-doctype-version-5-0-or-higher-exception-in-salesforce.html

Display Salesforce Visualforce rendered as PDF in Flow
In order to display Salesforce Visualforce rendered as PDF in a Flow, use iFrame tag in the Lightning Web Component and add the LWC in Flow Screen Element. Blog Post: https://www.infallibletechie.com/2023/01/how-to-display-salesforce-visualforce-rendered

Iterate list in Salesforce Visualforce Page
Page Block Table, Data Table, Data List and Apex Repeat can be used to render list in Visualforce page. Blog Post: https://www.infallibletechie.com/2022/02/how-to-iterator-list-in-salesforce.html

Display Error Messages in the Salesforce Visualforce Page
Blog Post: https://www.infallibletechie.com/2012/10/how-to-display-error-messages-in.html

Pass Data from Lightning Aura Component to Visualforce Page in Salesforce
In order to embed Lightning Aura Component in the Visualforce Page component, then Lightning App is required. In order to pass data from Lightning Aura Component to the Visualforce Page Component, then use Lighting Application Event. Blog Post: https:/

Salesforce Find Or Create Case Records using Pre Chat API with Custom Field
Salesforce Pre-Chat API can be used to find the existing Case records using Custom Field for matching the records. Check the following for reference. Blog Post: https://www.infallibletechie.com/2023/05/salesforce-find-or-create-case-records-using-pre-cha

Get and Set localStorage in Salesforce Visualforce Page
In Salesforce Visualforce Page, we can get and set localStorage using JavaScript localStorage.setItem() and logcalStorage.getItem() methods. Blog Post: https://www.infallibletechie.com/2023/07/get-and-set-localstorage-in-salesforce-visualforce-page.html

$User UITheme and $User UIThemeDisplayed in Salesforce
The difference between the $User.UITheme and $User.UIThemeDisplayed is that $User.UITheme variable returns the look and feel the user is supposed to see, while $User.UIThemeDisplayed returns the look and feel the user actually sees. Blog Post: https://w

Greet Customers in Salesforce Einstein BOT without Pre Chat from Experience Cloud Site
Using Visualforce Page, we can get the First Name and Last Name of the user using {!$User.FirstName} and {!$User.LastName} expressions. sessionStorage can be used so that we can access the value from the Experience Cloud Site "Snippet Settings File" JavaS

Attach a Salesforce Visualforce as PDF to an outgoing email
Queueable interface can be used to attach a Salesforce Visualforce as PDF to an outgoing email from trigger. Blog Post: https://www.infallibletechie.com/2023/03/how-to-attach-a-salesforce-visualforce-as-pdf-to-an-outgoing-email.html

Display Salesforce Lightning Web Component in a Visualforce Page
To display Salesforce Lightning Web Component in a Visualforce Page, make use of lightning out application. Blog Post: https://www.infallibletechie.com/2023/08/how-to-display-salesforce-lightning-web-component-in-a-visualforce-page.html

Rerender multiple sections in VisualForce page
Multiple ids should be used in the reRender attribute to Rerender multiple sections in VisualForce page. Blog Post: https://www.infallibletechie.com/2013/04/how-to-rerender-multiple-sections-in.html

escape attribute in Salesforce Visualforce
escape attribute in Salesforce Visualforce is used to determine whether the HTML and XML characters should be escaped in the HTML output generated by the component or not. Blog Post: https://www.infallibletechie.com/2015/01/escape-attribute-in-salesforce

JavaScript function for apex inputField onChange event in Salesforce VisualForce Page
To invoke or call JavaScript function for apex:inputField onChange event in Salesforce VisualForce Page, we can make use of oncomplete attribute in apex:actionSupport. Blog Post: https://www.infallibletechie.com/2023/08/javascript-function-for-apexinputf

Difference between dataTable and pageBlockTable
Only standard style sheets can be used in apex:pageBlockTable tag in a Visualforce page. apex:pageBlockTable must be contained in apex:pageBlock or apex:pageBlockSection. If we want to add custom style sheets we have to use apex:dataTable tag in Visualfo

Salesforce Chat in the Home Page
We can use Salesforce Chat in the Home Page by using the Chat Code Snippet in a Visualforce Page. The Visualforce Page should be added to the Lightning Home Page. Blog Post: https://www.infallibletechie.com/2024/02/salesforce-chat-in-the-home-page.html

OnLoad function in Salesforce Visualforce
window.onload or action attribute in apex:page can be used as OnLoad function in Salesforce Visualforce page. Blog Post: https://www.infallibletechie.com/2012/05/onload-function-in-visualforce.html

Download Salesforce Visualforce Page in Excel Format
updateRecord from the 'lightning/uiRecordApi' library can be used to update records without using Apex in Salesforce Lightning Web Component. Blog Post: https://www.infallibletechie.com/2024/06/update-record-in-salesforce-lightning-web-component-without-

Salesforce Visualforce Pages Metrics
Using VisualforceAccessMetrics object/entity in a Salesforce SOQL Query, we can track the number of views for each and every Visualforce page in our org receives in a 24-hour time period. To find out how many views a page got over the course of multiple d

Currency format in Salesforce Visualforce Page
Currency format in Salesforce Visualforce Page can be done using apex:outputText and apex:outputField. For example code, check the Blog Post: https://www.infallibletechie.com/2014/09/currency-format-in-visualforce-page.html