我想创建一个在oracle UCM 10gR3中添加自定义菜单的组件。截至目前,使用oracle UCM 11g可以实现这样的组件,所以我尝试在oracle UCM 10gR3中实现相同的功能。 这是我创建的组件'custommenu'的resource.htm文件
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>
custommenu htmlIncludeOrString
</title>
</head>
<body>
<@dynamichtml custommenuSampleTable@>
<?commatable indexedColumn="sampleKey"
countColumn="sampleCount"sortCloumn="sampleOrder"
sampleKey,sampleValue,sampleOrder,sampleCount
key2, value2, 20
key1, value1, 10
<@end@>
<@dynamichtml coreMenuItems@>
id,label,linkType,linkData
custommenu1,my first menu,.
custom menu2,my second menu,.
custommenu,Sub Menu,.
THING_1,Get Server Output,cgi,IdcService=GET_SERVER_OUTPUT
THING_2,My Document,cgi,Idc=GET_SEARCH_RESULT&QueryText=%
28dDocAuthor+<contains>+%60<$UserName$>
THING_3,Component Manager,admin,IdcService=GET_COMPONENT_DATA
<@end@>
<@dynamichtml CoreMenuItemRelationship@>
<?commatable mergeKey="primaryKey"?>
parentid,id,loadorder
MENU_A,custommenu1,500
MENU_B,custommenu2,500
custommenu1,THING_1,10
custommenu1,THING_2,20
custommenu1,THING_3,30
<@end@>
</body></html>
但是当我们启用此组件时,在UCM中找不到任何更改。 邀请所有类型的观点。 感谢
答案 0 :(得分:0)
该代码仅适用于11g。有关详细信息,请参阅this blog post。
您需要使用10g中可用的方法。以下是一些例子: