English 中文(简体)
如何在 Tridion Web GUI 的弹出窗口中获取完整的嵌入字段值集?
原标题:How to get the complete set of Embedded field values in a popup window in the Tridion Web GUI?

我为Tridion 2011 SP1 应用了一个丝带工具栏按钮,打开一个 aspx 页面, 并基于一个查找组件以弹出一个下调列表。 查找组件由不同嵌入的图案组成。 要过滤基于嵌入的 schema 名称的值, 我需要在按按钮 JavaScript 键点击时获取组件创建页面的嵌入式 schema 字段值 。

因为在我的组件创建页面中, 由多值的嵌入式 schema 字段构成的信息有信息, 有助于查找高值过滤进程 。 我并不知道该要求需要使用命令 。 我知道要获取完整的 XML 组件, 即 < code> $display. getView (). getTround Field () 。

To get the present RTF field content I am going for the command: target.editor.getHTML(). To get the complete set of Embedded schema field values only, which command I need to use?

我的样本组件来源:

<root>
    <a>sample a</a>
    <b>sample b</b>
    <c>
        <ca>ca 1</ca>
        <cb>cb 1</cb>
        <cc>cc 1</cc>
    </c>

    <c>
        <ca>ca 2</ca>
        <cb>cb 2</cb>
        <cc>cc 2</cc>
    </c>

    <c>
        <ca>ca 1</ca>
        <cb>cb 1</cb>
        <cc>cc 1</cc>
    </c>                
</root>
最佳回答

我认为没有公开的 API 。 但你可以使用组件数据 xml, 然后自己分析 :

var item = $display.getItem();
var xml = item.getContent(); // OR $display.getView().getItemFields();
var xmlDoc = $xml.getNewXmlDocument(xml);
var schema = item.getSchema();
if(schema.isLoaded())
{
   var xpath = "/custom:{0}/custom:embeddedFieldName".format(schema.getRootElementName());
   var fields = $xml.selectNodes(xmlDoc, xpath, { custom: schema.getNamespaceUri() });

   // loop fields and get values ...
}
问题回答

暂无回答




相关问题
Getting URL of published element in SDL Tridion

Is there any way of finding the absolute URL for a published object in the SDL Tridion Interface? For example when I published a page, how can I find the url where to access the page?

What is C# sample code for VBScript SetLocale Function

I have got below code in VBScript. Sub SetPageLocale() Dim Locale Dim ContextObject Set ContextObject=getContextObject Locale=getFieldValue(ContextObject.Publication.MetadataFields("...

Getting error while using TCMUploadAssembly.exe

Can you please suggest why I am getting below error, when I am trying to upload my Assembly using TCMUploadAssembly.exe, below is the setting which I have done in my POST Build event. $(ProjectDir)...

Component Links not working in 64 bit mode

Brief Summary: We are using Tridion 2009 SP1, however we never used .NET templating, we are still using R5 concept i.e. (VBScript, XSLT etc), we are using broker database for our linking etc. Our ...

热门标签