function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Donald Rivard.ax1922Donald Rivard.ax1922 

Lightning Components for Visualforce firing events

I am tring to fire a lightning application event from a component being loaded by Lightning Components for Visualforce. 
Here is the event


<aura:event type="APPLICATION" description="Event template">
  <aura:attribute name="id" type="String"/>
</aura:event>

In my component I have
<aura:registerEvent name="getId" type="c:DWRE_getId"/>

My helper I have

    var getProductsEvent = $A.get("e.c:DWRE_getId");

However getProductsEvent is always undefined. Is it possible to fire application level events from components being loaded in VF user LCfVF?

Don
sai akulasai akula
Have you found a solution for this ?