lightning-experience
Can I pass HTML markup as the content for a LWC slot when used in an Aura component?
Currently I have a LWC that has a <slot>
inside of it to allow content between the tags. To test said component, I wanted to spin up a scratch org and quickly create a component. Since we can’t create LWC inside the console, I created an Aura component instead.
ID of record created with force:recordData, the Lightning Data Service
How can I get the ID of a record being inserted with force:recordData?
traversing nth level in the lightning tree
i am trying to create account contact hierarchy in the lightning:tree and identifying nth level and creating tree like nested tree structure. parent account contact1 contact2 child account1 contact3 contact4 childaccount2 contact5 contact6 it is creating tree on same levels Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the … Read more
After Summer’19 release – “View All” on custom lightening component related list not loading
After Summer’19 release – “View All” on custom lightening component related list not loading. When users click on “View All” to view all the records, it takes to separate page but nothing loads. Is anyone facing the same issue? Code Below public without sharing class SummaryTableController { @AuraEnabled public static Object getParentObjectName(Id recordId){ recordId = … Read more
extending lightning components
I would like to find out which cases are appropriate for using inheritance in lightning components, particularly how can we use polymorphism by extending lightning componets or maybe implementing custom interfaces? As far as I know according to this article https://developer.salesforce.com/blogs/developer-relations/2015/03/salesforce-lightning-components-by-example-component-extension.html we can only inherit parent attributes and helper methods