Hey All....
I am creating web page using Netbeans 6.0. I use A jspf (java server page fragment) that is included in most of the other pages. There are several hyperlinks on the jspf that navigate to other pages. I want to install the ability to onMouseOver the hyperlinks on the jspf to produce submenus that will navigate to other pages. I know that in Netbeans I can go to the properties of the hyperlinks and fill in the javascript in the "onMouseOve r" item part of the properties, but I'm not quite sure how to the write the javascript, or if I can just use jsp tags for this. Any help would be greatly appreciated.
Here is the code from the jspf:
Thanks
Silgd
I am creating web page using Netbeans 6.0. I use A jspf (java server page fragment) that is included in most of the other pages. There are several hyperlinks on the jspf that navigate to other pages. I want to install the ability to onMouseOver the hyperlinks on the jspf to produce submenus that will navigate to other pages. I know that in Netbeans I can go to the properties of the hyperlinks and fill in the javascript in the "onMouseOve r" item part of the properties, but I'm not quite sure how to the write the javascript, or if I can just use jsp tags for this. Any help would be greatly appreciated.
Here is the code from the jspf:
Code:
<div style="background-color: rgb(153, 153, 255); height: 378px; width: 142px; -rave-layout: grid" xmlns:f="http://java.sun.com/jsf/core" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
<f:subview id="FluentLeftNav">
<webuijsf:hyperlink actionExpression="#{FluentLeftNav.accounts_action}" binding="#{FluentLeftNav.accounts}" id="accounts"
style="color: white; font-family: 'Times New Roman','Times',serif; font-size: 18px; font-weight: bolder; left: 24px; top: 24px; position: absolute; text-decoration: underline overline"
text="Accounts" url="/faces/AccountsPage.jsp"/>
<webuijsf:hyperlink actionExpression="#{FluentLeftNav.search_action}" binding="#{FluentLeftNav.search}" id="search"
style="color: white; font-family: 'Times New Roman',Times,serif; font-size: 18px; font-weight: bolder; left: 24px; top: 78px; position: absolute; text-decoration: underline overline"
text="Search" url="/faces/SearchPage.jsp"/>
<webuijsf:hyperlink actionExpression="#{FluentLeftNav.reports_action}" binding="#{FluentLeftNav.reports}" id="reports"
style="color: white; font-family: 'Times New Roman',Times,serif; font-size: 18px; font-weight: bolder; left: 24px; top: 126px; position: absolute; text-decoration: underline overline"
text="Reports" url="faces/ReportsPage.jsp"/>
<webuijsf:hyperlink actionExpression="#{FluentLeftNav.i_o_action}" binding="#{FluentLeftNav.i_o}" id="i_o"
style="color: white; font-family: 'Times New Roman','Times',serif; font-size: 18px; font-weight: bolder; left: 24px; top: 168px; position: absolute; text-decoration: underline overline"
text="I/O" url="/faces/InputOutput.jsp"/>
<webuijsf:hyperlink actionExpression="#{FluentLeftNav.tasks_action}" binding="#{FluentLeftNav.tasks}" id="tasks"
style="color: white; font-family: 'Times New Roman',Times,serif; font-size: 18px; font-weight: bolder; left: 24px; top: 222px; position: absolute; text-decoration: underline overline" text="Tasks"/>
</f:subview>
</div>
Silgd
Comment