Forum Discussion
isxtn
2 years agoAdvisor
This should work whether it's an OOTB component or a custom component.
If you're looking for something passed via component, i.e.,
In a quilt:
<component id="myComponent" msg="I like tacos" tacoType="chorizo with everything" />
In the component receiving the parameters:
<#assign value1 = env.context.component.getParameter("msg")!"" />
<#assign value2 = env.context.component.getParameter("tacoType")!"" />
Related Content
- 2 months ago