I need each pcd id(pcd:portal_content/mycomp/iview/com.mycomp.sap_portal.iview.home...)
of menu's title(Home, SystemAdmin...)
in the toplevelnavigationJS.jsp File.
I want know all pcd id
function render(level, id, isActive, isHover, isLast, firstLevelStyle) {
.........................
var visibleTitle = this.title;
........................
//var pcd = this.PCD_ID; // ???here
return "<TD nowrap id=\"navNode_" + level + "_" + id + "\" " +
"onkeydown=\"navNodeKeyDownHandler(" + level + ", " + id + ")\" " +
"class=\"" + tdClassName + "\" " + onMouseClickEvent + onMouseEnterEvent + ">" +
"" + visibleTitle + "" + "</TD>" + sepTD + lastTD;
}