on 10-26-2006 8:52 PM
For the Student tab in the top level nabiagtion in the portal when a student chooses 'Courses' the detailed navigation it shows:
^ Academic Records
^ Registration
Is there a way to make detailed navigation completely open so it look like:
^ Academic Records
*Grades
*Documents
*Apply for Graduation
^ Registration
*Schedule
*Course Catalog
*Registration
Thanks for any assistance!
Donna Maupin
University of Kentucky
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Donna
I have implemented this for the "com.sap.portal.navigation.lightdetailednavigationtree.par". You have to change in the "LightDetailedNavigationTree.jsp" file. The variable
<i>nodeInSelectedPath</i> has to be changed to <i>true</i> instead of <i>false</i>.
<nav:recurseNavNodeChildren currentDepth="currentDepth" currentNavNode="currentNavNode">
<% nodeInSelectedPath = <b>true</b>; %>
<nav:ifNavNodeInSelectedPath>
<% nodeInSelectedPath = true; %>
</nav:ifNavNodeInSelectedPath>
Regards
Geogi
Hi Darrell,
> This property is "Initial State - Open or Closed".
... but that property doesn't determine if the tree entrie is open or closed but if the whole DetNav panel is shown or not... See http://help.sap.com/saphelp_nw04s/helpdata/en/db/a14c12b21d412a96ea09da3ba45f1a/frameset.htm for details.
Hope it helps
Detlev
Hi Donna
The value of the variable "nodeIsOpen" determines this node property.The following changes has also to be done.
if(nodeIsOpen) {
if(nodeIsPressed) {
openNodes.remove(nodeIDInteger);
nodeIsOpen = false;
}
} else {
if(nodeIsPressed) {
openNodes.add(nodeIDInteger);
nodeIsOpen = true;
}to be replaced by
if(nodeIsOpen) {
if(nodeIsPressed) {
openNodes.remove(nodeIDInteger);
nodeIsOpen = false;
}
} else {
openNodes.add(nodeIDInteger);
nodeIsOpen = true;
}Regards
Geogi
Check out the behavior of System Administration tab. The subpage 'System Administration -> Transport -> Transport Packages -> Export' opens automatically on clicking the toplevel workset. I have tried to find the setting that makes this happen, but without luck.
Any tips?
Henning
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
On my version, which is NW04 SP18, I have to click on the folder name, as the page is not displayed at all when going to the Transport Packages. I presume you mean when you click on the "Transport" link on the 2nd Level navigation bar. As this doesn't automatically open the folder nor the page for me, and I then have to actually click on the "Transport Packages" folder before the page will open.
D
I am on NW04 SPS 16. When clicking top tab "System Administration" the first 2nd level tab "Transport" opens, and so does the "Transport Packages" folder displaying the first page "Export". BUT when clicking the second level "Transport" tab the folder does not expand - like you describe.
Henning
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.