Posts

Showing posts from 2021

Navigate to a independent Aura component from Visualforce Page

Hi Guys, Today in this post we are going to learn on, How to navigate or Display Lightning Components on the click of a button from a Visualforce Page.    Step 1 :  Create Lightning Component [  lcFromVF.cmp   ] <aura:component implements="force:hasRecordId,force:lightningQuickActionWithoutHeader,flexipage:availableForAllPageTypes" access="global"> <aura:attribute name="recordId" type="String" /> </aura:component> Step 2 :  Create Visualforce Page [  lcVF.vfp   ] <apex:form> <button onclick="NavigatetoauraComponent();" type="button"> Navigate to aura Component </button> </apex:form> <script> function NavigatetoauraComponent(){ var compDefinition = { "componentDef" : "c:lcFromVF", "attributes" :{ "recordTypeId" : "00Q2v00001fum80", } }; // Ba

Community are changed to Digital Experience in quick find

Image
Now it will be visible with "Digital Experiences" More Details: https://help.salesforce.com/articleView?id=networks_enable.htm&type=5 Thanks Apex Coder

How to call lightning component from related list button in lightning

Image
Create a List type button Lightning App Lightning Component Visualforce Page