在SDL Tridion 2011 Sp1中为.Net模板构建块启用内联编辑

时间:2012-05-21 06:08:29

标签: tridion tridion-2011

我正在SDL Tridion 2011 SP1中开发.Net TBB。

我的组件Source看起来像这样。

<Content>
  <single>ABCD</single>
</Content>

我试过这样的事情。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Tridion.ContentManager.Templating.Assembly;
using Tridion.ContentManager.Templating;
using Tridion.ContentManager.ContentManagement;
using Tridion.ContentManager.ContentManagement.Fields;
using System.IO;
using System.Collections;
using System.Xml;
using System.Xml.Linq;

namespace ClassLibrary1
{
    public class SampleTemplate : ITemplate
    {

        /// <summary>
        /// Transform as defined by ITemplate.
        /// </summary>
        /// <param name="engine">Templating engine</param>
        /// <param name="package">Package to process</param>
        public void Transform(Engine engine, Package package)
        {
            using (MemoryStream mem= new MemoryStream() )
            {
                Component component = engine.GetObject(package.GetValue("Component.ID")) as Component;
                ItemFields content = new ItemFields(component.Content, component.Schema);


                XhtmlField temp = (XhtmlField)content["single"];

                int i=0;
                XmlDocument xdoc = new XmlDocument();

                XmlElement root = xdoc.CreateElement("body");

                XElement xe = null;

                foreach (string val in temp.Values)
                {
                    string j=i.ToString();

                    XmlNode xnode = xdoc.CreateNode(XmlNodeType.Element, @"tcdl:ComponentField", "tcdlNamespace");
                    XmlAttribute name = xdoc.CreateAttribute("name");
                    XmlAttribute index = xdoc.CreateAttribute("index");
                    name.Value="single"+"["+i+"]";
                    index.Value = "0";
                    xnode.Attributes.Append(name);
                    xnode.Attributes.Append(index);
                    root.AppendChild(xnode);
                    i++;
                }
                package.PushItem("Output", package.CreateHtmlItem(xdoc.InnerText));
            }

        }
    }
}

这里“单身”是多值字段。

我的输出空白。

任何人都可以帮助完成它。

感谢。

1 个答案:

答案 0 :(得分:2)

而不是:

package.PushItem("Output", package.CreateHtmlItem(xdoc.InnerText));

使用

package.PushItem("Output", package.CreateHtmlItem(root.OuterXml));

另外,我注意到你没有在任何地方使用字段值。你正在迭代它,但是没有将值添加到输出中,不确定这是否是你想要的