
Display PDF from Lightning Web Component Quick Action
9K views · Jul 19, 2022 infallibletechie.com
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 P...
687 views · Aug 25, 2022 infallibletechie.com
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 R...
2K views · Sep 12, 2022 infallibletechie.com
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: https://www.infallibletechie.com/2022/09/how-to-pass-record-id-to-visualforce-page-in-salesforce-lightning-record-page.html

Navigate to a Visualforce page when the Salesforce Flow is F...
2K views · Sep 24, 2022 infallibletechie.com
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-finished.html

Visualforce Page Requires HTML docType version 5 0 or higher...
18K views · Jan 6, 2023 infallibletechie.com
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
1K views · Jan 30, 2023 infallibletechie.com
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-as-pdf-in-flow.html

Iterate list in Salesforce Visualforce Page
3K views · Feb 10, 2023 infallibletechie.com
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
34K views · Mar 3, 2023 infallibletechie.com
Blog Post: https://www.infallibletechie.com/2012/10/how-to-display-error-messages-in.html

Pass Data from Lightning Aura Component to Visualforce Page ...
15K views · Apr 26, 2023 infallibletechie.com
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://www.infallibletechie.com/2023/04/pass-data-from-lightning-aura-component-to-visualforce-page-in-salesforce.html

Salesforce Find Or Create Case Records using Pre Chat API wi...
9K views · May 10, 2023 infallibletechie.com
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-chat-api-with-custom-field.html

Get and Set localStorage in Salesforce Visualforce Page
1K views · Jul 23, 2023 infallibletechie.com
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
523 views · Jul 29, 2023 infallibletechie.com
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://www.infallibletechie.com/2023/07/user-uitheme-and-user-uithemedisplayed.html

Greet Customers in Salesforce Einstein BOT without Pre Chat ...
5K views · Sep 30, 2023 infallibletechie.com
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" JavaScript. We can pass the Chat Visitor from the Experience Cloud Site "Snippet Settings File" JavaScript. In the Einstein BOT, we can use Context Variable to get the Chat Visitor name and greet. Blog Post: https://www.infallibletechie.com/2023/09/greet-customers-in-salesforce-einstein-bot-without-pre-chat-from-experience-cloud-site.html

Attach a Salesforce Visualforce as PDF to an outgoing email
4K views · Oct 28, 2023 infallibletechie.com
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 ...
3K views · Nov 17, 2023 infallibletechie.com
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
430 views · Nov 20, 2023 infallibletechie.com
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
2K views · Nov 23, 2023 infallibletechie.com
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.html

JavaScript function for apex inputField onChange event in Sa...
7K views · Nov 24, 2023 infallibletechie.com
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-apexinputfield-onchange-event-in-salesforce-visualforce-page.html

Difference between dataTable and pageBlockTable
72 views · Dec 8, 2023 infallibletechie.com
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 Visualforce page. Blog Post: 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 Visualforce page.

Salesforce Chat in the Home Page
988 views · Feb 28, 2024 infallibletechie.com
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
403 views · May 23, 2024 infallibletechie.com
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
1K views · Jul 2, 2024 infallibletechie.com
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-apex.html

Salesforce Visualforce Pages Metrics
930 views · Oct 4, 2024 infallibletechie.com
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 days, you can query multiple VisualforceAccessMetrics objects for the same ApexPageId. Blog Post: https://www.infallibletechie.com/2019/06/how-to-access-metrics-for-your.html

Currency format in Salesforce Visualforce Page
1K views · Jan 15, 2025 infallibletechie.com
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