如何在没有scriptlet的情况下撤销Webcenter站点中的列表对象?

时间:2015-11-11 15:49:05

标签: webcenter-sites

我需要在反向而不使用scriptlet 的网站中心迭代listobject,有一个选项(属性或其他标记)可供制作这可能吗?

我认为不需要真正的例子,但这就是我过去迭代列表的方式:

<ics:listloop listname="mylist">
    //element tratament
</ics:listloop>

编辑:我正在考虑创建一个新标签,但我想知道它是否可能使用webcenter sites标签或jstl。

2 个答案:

答案 0 :(得分:0)

它可能..检查标签引用,提到你可以在ics:listloop标签中使用startrow和endrow属性。因此,只需提供正确的值即可。

答案 1 :(得分:0)

这是一个示例,如何使用listloop读取资产的属性或ID列表

// start Loot with the list

    <ics:listloop listname="ListAsset_Attribute">
    <ics:listget listname="ListAsset_Attribute" fieldname="value" output="Var_ValueOfAttribute" />  

    // Do anything with the values of that id like set an asset
    <assetset:setasset name="varAsset" type='Type_of_Asset' id='<%=ics.GetVar("assetId") %>' />

    </ics:listloop>

阅读此链接: https://kksays.wordpress.com/tag/icslistloop/