Search

search results for: Lightning

Found 40 Results
  • post per page:

  • sort by:

What Does Salesforce Lightning Experience Mean to Me?

…When Salesforce fully releases Lightning Experience, will all of my pre-Lightning Experience configuration changes still work? Yes, rest assured that when Lightning Experience is fully released, nothing will break –…

TrailheaDx – Lightning, Lightning & Lightning

…techniques and mechanisms to add more security to the Lightning Components. Lightning Inspector – Chrome based tools to debug, monitor and triage issues related to your Lightning Components that use an…

Lessons Learned From My First Lightning Component

…Apex 3. Uncaught Error: Bootstrap’s JavaScript requires jQuery 4. Cannot Read Property ‘childNodes’ of Null 5. Problems Using component.find in Object-Oriented Lightning Components 6. JSON&aura.formatAdapter=LIGHTNING_OUT Failed to load resource: 1….

Overriding the Opportunity Contact Role in Salesforce Lightning

…attribute=”actions”> <lightning:button label=”Manage Contact Roles” class=”slds-m-vertical–small” onclick=”{!c.manageRoles}”/> </aura:set> <lightning:layout multipleRows=”true”> <aura:iteration items=”{!v.ocrs}” var=”ocr”> <lightning:layoutitem size=”6″> <lightning:card iconName=”standard:contact” class=”slds-m-right–small”> <aura:set attribute=”title”> <a href=”{!’/lightning/r/’ + ocr.Contact.Id + ‘/view’}”>{!ocr.Contact.Name}</a> <aura:if isTrue=”{!ocr.IsPrimary}”> <span class=”slds-m-around–medium”>

Expandable Lightning Component

What do I mean by an “expandable” lightning component?  Well, what I mean is a lightning component whose content can be “expanded” to include another component by specifying the NAME…

Email Author for Salesforce Lightning Experience

…so that it can be accessed from other lightning components using lightning:navigation as follows: <!– calling component –> <lightning:navigation aura_id=”navService”/> // Calling component javascript helper var navService = component.find(“navService”); var pageReference

Lightning Picklist By Record Type

…2 main components in this package are “RTPL_RecordTypeSelectList” and “RTPL_FlowRecordTypeSelectList”. “RTPL_RecordTypeSelectList” is designed for using in lightning components by a lightning developer. “RTPL_FlowRecordTypeSelectList” is a lightning component that can be…

Lightning Exception Handling Framework

…with what the design is using, let’s take a look at how to implement with a custom component. <aura:component implements=”flexipage:availableForAllPageTypes” extends=”c:LightningLog” controller=”ExampleLightningLogCmpController”> <aura:set attribute=”notifyOnError” value=”TRUE”/> <div>Device: {!v.devicetype}</div> <div> <lightning:button variant=”brand”…

Lightning Design System Tricks and Tips

I recently had the opportunity to build several Visualforce pages paired with the Lightning Design System (LDS). While I learned a lot, I also hit some bumps along the way. At…