I am working on Dreamweaver TBBs in SDL Tridion 2011 SP1.
I am unaware of handling component links in Dreamweaver TBBs.
Consider my Component name is "A" which has link to another component "B".
Component A source looks like this:
<Content xmlns="Some UUID">
<Name xlink:type="simple" xlink:href="tcm:184-1897"
xmlns:xlink="http://www.w3.org/1999/xlink" xlink:title="B"></Name>
</Content>
Component B source is:
<Content xmlns="Some other UUID">
<first>first field</first>
<second>second field</second>
</Content>
I want to write a DWT TBB which can access the fields in the linked component B from Component A.
I want to use RenderComponentField rendition method.
Do I need to add any extentions to it, will I be able apply SiteEdit on it.
Please share your views on it.
Thank you.
If you are using SiteEdit 2009 it is possible, just a bit more difficult than it would be with the main component fields. SiteEdit works by wrapping the content fields with JSON markup. There's no reason why you can't detect if the publication target is staging and write this JSON out yourself.
Alternatively Will Price has developed some Template Building Blocks to help with SiteEdit which are available here.
These are accompanied by a guide here, specifically the section on embedded components will be of use to you.
Allowing fields of a linked Component to be editable has been introduced in SiteEdit 2009 SP2. The SiteEdit front-end works based on the SiteEdit command language that is embedded into the HTML it gets back from the staging server.
So let's say you have a single Component in there:
Those
Start SiteEdit
comments in there are commands that your HTML gives to SiteEdit and you can see how they mark the Component Presentation and the title field.If you render fields of a linked Component, you need to also have a corresponding Component Presentation command like this:
The there are now two
Start SiteEdit Component Presentation
commands, one for the outer Component and one for the linked Component. One important thing to note here is that the IsQueryBased property of the nested Component Presentation must be set to true. This tells the SiteEdit front-end that the Component Presentation is indeed not supposed to be present in the Page XML it retrieves from Tridion.To the SiteEdit front-end it doesn't matter how the commands are put into the HTML.
Most common is for people to call
RenderComponentPresentation
andRenderComponentField
, which marks the corresponding parts. But unfortunately theRenderComponentField
function can only be used to render fields from the so-called "context Component", which it looks up like this:This means that in a single DWT all calls to
RenderComponentField
will work on the same context Component. So you can never callRenderComponentField
in a single DWT to render fields from two different Components.You have two options to solve this:
RenderComponentPresentation
for the linked ComponentStart SiteEdit Component Presentation
andStart SiteEdit Component Field
commands yourself in the DWTOption 1 is the cleanest separation you can get: since you are rendering fields from another Component, you are essentially rendering another Component Presentation. If you split out the layout for the linked fields into a separate DWT and build a CT around that, you can render it like this in your main DWT:
Walter explained this best in his article on Tridion templating:
Although it does lead to more CTs and DWTs, those DWTs will be a lot simpler since you can now use
RenderComponentField
in them as usual.Option 2 really just means that you're outputting the HTML comments with the SiteEdit commands in your DWT. Since the command language is documented as part of the API (see link above) there is little chance that it will change in future versions of SiteEdit 2009.
Sorry for the long story, you happened to trigger a tricky use-case here. I hope it makes sense.
You cannot read the fields from B using standard Dreamweaver templates. You will need to write a C# TBB to extract the linked Component and place it in the package as type Component. You then can use DWT syntax to read the fields from that component. Eg: @@linkedComponent.Fields.first@@
Siteedit is problematic on this one and different versions use different syntaxes and capabilities. I'm afraid with the latest version you cannot edit such fields...
There are two separate questions in this topic:
This is the answer to question 1. I will provide a separate answer for question 2.
In Tridion's default handling of expressions in DWT templates you only have access to fields of Components that are in the package. So if you want to access the fields of Component B, you will have to write a C# TBB that pushes that Component into the Package.
A sample C# fragment:
If you put this in a C# fragment TBB and drop it into your CT before the DWT, you can do this in your DWT:
Alternatively you can use Nuno's Dreamweaver Get eXtension (DGX) to access such fields without writing a TBB:
The only downside to using the DGX is that you will need to install it on every Tridion server. After that, a heap of extended functionality is available in your DWTs.