Hey! Forgive me if this has already been asked/requested.
When building lightning components you can declare attributes which are filled in by the user when they drag the component into the app builder or community builder. Like this:
<aura:attribute name="title" type="String" default="Title" access="global" />
I was wondering if, when in the same component you declare a Skuid page, you could somehow pass in those attributes and use them in the Skuid page (e.g. via merge syntax).
Like this (but you’d need to somehow pass in multiple attributes):
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global" > <aura:attribute name="title" type="String" default="Title" access="global" /> <skuid:page <b>STUFFTOPASS={!v.title}</b> page="Lovely_Skuid_Page"/> </aura:component>
y’ dig?
Cheers!
Louis