Salesforce Visualforce Page
'Video thumbnail for Display PDF from Lightning Web Component Quick Action'
play_arrow
7:21
Display PDF from Lightning Web Component Quick Action
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.

'Video thumbnail for Record creation using JavaScript in Salesforce Visualforce Page'
play_arrow
5:00
Record creation using JavaScript in Salesforce Visualforce P...
Record creation using JavaScript in Salesforce Visualforce Page

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

'Video thumbnail for Pass record Id to Visualforce page in Salesforce Lightning Record Page'
play_arrow
2:34
Pass record Id to Visualforce page in Salesforce Lightning R...
Pass record Id to Visualforce page in Salesforce Lightning Record Page

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

'Video thumbnail for Navigate to a Visualforce page when the Salesforce Flow is Finished'
play_arrow
9:24
Navigate to a Visualforce page when the Salesforce Flow is F...
Navigate to a Visualforce page when the Salesforce Flow is Finished

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

'Video thumbnail for Visualforce Page Requires HTML docType version 5 0 or higher Exception in Salesforce'
play_arrow
3:27
Visualforce Page Requires HTML docType version 5 0 or higher...
Visualforce Page Requires HTML docType version 5 0 or higher Exception in Salesforce

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

'Video thumbnail for Display Salesforce Visualforce rendered as PDF in Flow'
play_arrow
5:56
Display Salesforce Visualforce rendered as PDF in Flow
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

'Video thumbnail for Iterate list in Salesforce Visualforce Page'
play_arrow
5:53
Iterate list in Salesforce Visualforce Page
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

'Video thumbnail for Display Error Messages in the Salesforce Visualforce Page'
play_arrow
3:34
Display Error Messages in the Salesforce Visualforce Page
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

'Video thumbnail for Pass Data from Lightning Aura Component to Visualforce Page in Salesforce'
play_arrow
7:28
Pass Data from Lightning Aura Component to Visualforce Page ...
Pass Data from Lightning Aura Component to Visualforce Page in Salesforce

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

'Video thumbnail for Salesforce Find Or Create Case Records using Pre Chat API with Custom Field'
play_arrow
5:20
Salesforce Find Or Create Case Records using Pre Chat API wi...
Salesforce Find Or Create Case Records using Pre Chat API with Custom Field

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

'Video thumbnail for Get and Set localStorage in Salesforce Visualforce Page'
play_arrow
3:03
Get and Set localStorage in Salesforce Visualforce Page
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

'Video thumbnail for $User UITheme and $User UIThemeDisplayed in Salesforce'
play_arrow
3:21
$User UITheme and $User UIThemeDisplayed in Salesforce
$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

'Video thumbnail for Greet Customers in Salesforce Einstein BOT without Pre Chat from Experience Cloud Site'
play_arrow
12:18
Greet Customers in Salesforce Einstein BOT without Pre Chat ...
Greet Customers in Salesforce Einstein BOT without Pre Chat from Experience Cloud Site

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

'Video thumbnail for Attach a Salesforce Visualforce as PDF to an outgoing email'
play_arrow
6:17
Attach a Salesforce Visualforce as PDF to an outgoing email
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

'Video thumbnail for Display Salesforce Lightning Web Component in a Visualforce Page'
play_arrow
4:45
Display Salesforce Lightning Web Component in a Visualforce ...
Display Salesforce Lightning Web Component in a Visualforce Page

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

'Video thumbnail for Rerender multiple sections in VisualForce page'
play_arrow
3:59
Rerender multiple sections in VisualForce page
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

'Video thumbnail for escape attribute in Salesforce Visualforce'
play_arrow
4:43
escape attribute in Salesforce Visualforce
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

'Video thumbnail for JavaScript function for apex inputField onChange event in Salesforce VisualForce Page'
play_arrow
4:46
JavaScript function for apex inputField onChange event in Sa...
JavaScript function for apex inputField onChange event in Salesforce VisualForce Page

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

'Video thumbnail for Difference between dataTable and pageBlockTable'
play_arrow
4:17
Difference between dataTable and pageBlockTable
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.

'Video thumbnail for Salesforce Chat in the Home Page'
play_arrow
2:52
Salesforce Chat in the Home 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

'Video thumbnail for OnLoad function in Salesforce Visualforce'
play_arrow
5:13
OnLoad function in Salesforce Visualforce
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

'Video thumbnail for Download Salesforce Visualforce Page in Excel Format'
play_arrow
4:43
Download Salesforce Visualforce Page in Excel Format
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

'Video thumbnail for Salesforce Visualforce Pages Metrics'
play_arrow
3:11
Salesforce Visualforce Pages Metrics
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

'Video thumbnail for Currency format in Salesforce Visualforce Page'
play_arrow
5:42
Currency format in Salesforce Visualforce Page
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