On Jul 7, 7:51 am, JJB <[email protected]> wrote: > Thanks Ingo, but it is pull out the title from Navigation container. > We are not using the Nav Manager. > > I can pull the hdl_Title from the Foundation page and pull into the > Body Area container. I want to do the reverse.
Here are two possible ways. First, using a render tag -- and this shouldn't depend on Navigation Manager -- like this: <%!! Context:CurrentPage.Elements.GetElement(con_Content).Value [Int32:0].Elements.GetElement(hdl_Headline).Value !!%> This assumes your container is called con_Content and your headline value is hdl_Headline. This seems to me the cleanest way. The second alternative is to add a list element that transfers elements to your Foundation page, and set it to reference the container. Then iterate the list and use the transferred headline. Not nearly as clean, and will cause problems if there is more than one page in the container. But it might look something like this: <p>Headline from container using referenced list element:<br/> <!IoRangeList> <!IoRangePreExecute><% ' <%lst_ContainerReference%> %><!/ IoRangePreExecute> <%hdl_Headline%> <!/IoRangeList> </p> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/RedDot-CMS-Users?hl=en -~----------~----~----~----~------~----~------~--~---
