tridion

Retrieving values of a linked component in Dreamweaver TBB - and making it SiteEditable

↘锁芯ラ 提交于 2019-11-28 00:44:31
问题 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<

How to handle nested repeating regions in Dreamweaver TBBs in SDL Tridion 2011 SP1

谁都会走 提交于 2019-11-27 15:13:08
I am working on DWT TBB in SDL Tridion 2011 SP1. I have a embedded field "body" which is multivalued. In this embedded field I have one more simple Text field "value", which is again multivalued. To render the "value" field I have to use two repeating loops. But I am unable to differentiate the Indeces of the both loops. I have written as follows. <!-- TemplateBeginRepeat name="Component.Fields.body" --> <!-- TemplateBeginRepeat name="Component.Fields.body[${TemplateRepeatIndex}].value" --> <div>@@RenderComponentField("Fields.body[${TemplateRepeatIndex}].value", TemplateRepeatIndex)@@ </div> <

How to update a PDF without creating a new PDF?

有些话、适合烂在心里 提交于 2019-11-26 02:26:33
问题 I am required to replace a word in an existing PDF AcroField with another word. I am using PDFStamper of iTEXTSHARP to do the same and it is working fine. But, in doing so it is required to create a new PDF and i would like the change to be reflected in the existing PDF itself. If I am setting the destination filename same as the original filename then no change is being reflected.I am new to iTextSharp , is there anything I am doing wrong? Please help.. I am providing the piece of code I am