Valid PDI Dumps shared by EduDump.com for Helping Passing PDI Exam! EduDump.com now offer the newest PDI exam dumps, the EduDump.com PDI exam questions have been updated and answers have been corrected get the newest EduDump.com PDI dumps with Test Engine here:
Access PDI Dumps Premium Version
(205 Q&As Dumps, 35%OFF Special Discount Code: freecram)
Recent Comments (The most recent comments are at the top.)
In the context of handling component events in a container component in Salesforce Lightning, you typically use the <aura:handler> tag, and there is no attribute named includeFacets.
If you review the documentation you provided (https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/events_component_bubbling.htm), it describes the use of the <aura:handler> tag to handle events. The key attributes are name (for the event type), action (for the handler method), and optionally facet (for handling events from a specific facet).
To handle a component event in a container component, you would do something like this:
html
Copy code
<aura:handler event="c:myComponentEvent" action="{!c.handleEvent}" />
This assumes you have a component event named myComponentEvent and a method named handleEvent in your container component's controller (c).
There is no includeFacets attribute used in the context of handling events in this manner.
B and D are correct
Answer B,D
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/events_component_bubbling.htm