Guest User

Untitled

a guest
Dec 10th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <aura:component ...>
  2. <aura:attribute name="message" type="String"/>
  3. <aura:attribute name="vfHost" type="String"/>
  4. <!-- Input field for message "data" -->
  5. <lightning:input type="text" label="Message:"
  6. value="{!v.message}"/>
  7. <lightning:button label="Send to Visualforce"
  8. onclick="{!c.sendToVF}"/>
  9. <!-- The Visualforce page to send data to -->
  10. <iframe aura:id="vfFrame"
  11. src="{!'https://' + v.vfHost + '/apex/myvfpage'}"/>
  12. </aura:component>
Add Comment
Please, Sign In to add comment