473,394 Members | 1,640 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

how to produce a submenu from an onMouseOver on a hyperlink in a jsp fragment

25
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 "onMouseOver" 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:
Expand|Select|Wrap|Line Numbers
  1.  
  2. <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">
  3.       <f:subview id="FluentLeftNav">
  4.            <webuijsf:hyperlink actionExpression="#{FluentLeftNav.accounts_action}" binding="#{FluentLeftNav.accounts}" id="accounts"
  5.             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"
  6.             text="Accounts" url="/faces/AccountsPage.jsp"/>
  7.         <webuijsf:hyperlink actionExpression="#{FluentLeftNav.search_action}" binding="#{FluentLeftNav.search}" id="search"
  8.             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"
  9.             text="Search" url="/faces/SearchPage.jsp"/>
  10.         <webuijsf:hyperlink actionExpression="#{FluentLeftNav.reports_action}" binding="#{FluentLeftNav.reports}" id="reports"
  11.             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"
  12.             text="Reports" url="faces/ReportsPage.jsp"/>
  13.         <webuijsf:hyperlink actionExpression="#{FluentLeftNav.i_o_action}" binding="#{FluentLeftNav.i_o}" id="i_o"
  14.             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"
  15.             text="I/O" url="/faces/InputOutput.jsp"/>
  16.         <webuijsf:hyperlink actionExpression="#{FluentLeftNav.tasks_action}" binding="#{FluentLeftNav.tasks}" id="tasks"
  17.             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"/>
  18.     </f:subview>
  19. </div>
  20.  
  21.  
Thanks

Silgd
Jul 2 '08 #1
5 4244
acoder
16,027 Expert Mod 8TB
JSP is pretty useless (well, almost) in a JavaScript forum. Post the HTML version that you see when you view the source in the browser.

PS. use the [code] variety of code tags. Thanks!
Jul 2 '08 #2
Silgd1
25
Here is the code from the "view source" in the browser.

Expand|Select|Wrap|Line Numbers
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wairole="http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#" xmlns:waistate="http://www.w3.org/2005/07/aaa">
  4. <head>
  5. <meta content="no-cache" http-equiv="Pragma" />
  6. <meta content="no-cache" http-equiv="Cache-Control" />
  7. <meta content="no-store" http-equiv="Cache-Control" />
  8. <meta content="max-age=0" http-equiv="Cache-Control" />
  9. <meta content="1" http-equiv="Expires" />
  10. <title></title>
  11. <link rel="stylesheet" type="text/css" href="/FluentHome/theme/com/sun/webui/jsf/suntheme/css/css_master-all.css" />
  12. <link rel="stylesheet" type="text/css" href="/FluentHome/theme/com/sun/webui/jsf/suntheme/css/ie7.css" />
  13. <script type="text/javascript">var djConfig = (djConfig) ? djConfig : {"isDebug":false,"parseOnLoad":false};
  14. </script>
  15. <script type="text/javascript" src="/FluentHome/theme/META-INF/json/json.js"></script>
  16. <script type="text/javascript" src="/FluentHome/theme/META-INF/prototype/prototype.js"></script>
  17. <script type="text/javascript" src="/FluentHome/theme/META-INF/com_sun_faces_ajax.js"></script>
  18. <script type="text/javascript" src="/FluentHome/theme/META-INF/dojo/dojo/dojo.js"></script>
  19. <script type="text/javascript" src="/FluentHome/theme/META-INF/dojo/dijit/dijit.js"></script>
  20. <script type="text/javascript">dojo.registerModulePath("webui.suntheme", "/FluentHome/theme/com/sun/webui/jsf/suntheme/javascript");
  21. var webui = {"suntheme":{"bootstrap":{"theme":{"module":"webui.suntheme.theme","locale":"en-US","prefix":"/FluentHome/theme","bundle":"suntheme","modulePath":"/com/sun/webui/jsf/suntheme/javascript/theme"},"debug":false}}};</script>
  22. <script type="text/javascript" src="/FluentHome/theme/com/sun/webui/jsf/suntheme/javascript/webui-jsfx.js"></script>
  23. <link id="link1" rel="stylesheet" type="text/css" href="/FluentHome/resources/stylesheet.css" />
  24. </head>
  25. <body id="body1" style="-rave-layout: grid"><form id="form1" class="form" method="post" action="/FluentHome/faces/Page1.jsp;jsessionid=54b9d5d9e33b7047a60542d19f3a" enctype="application/x-www-form-urlencoded">
  26. <div style="height: 190px; left: 0px; top: 0px; position: absolute; width: 766px"><div style="height: 190px; width: 766px; -rave-layout: grid"><span id="form1:FluentHeader:logo"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:logo", {"id":"form1:FluentHeader:logo","height":168,"widgetType":"webui.suntheme.widget.image","style":"left: 0px; top: 0px; position: absolute","visible":true,"width":288,"src":"/FluentHome/resources/name.gif;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  27. <span id="form1:FluentHeader:headerbckgrnd"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:headerbckgrnd", {"id":"form1:FluentHeader:headerbckgrnd","height":168,"widgetType":"webui.suntheme.widget.image","style":"left: 288px; top: 0px; position: absolute","visible":true,"width":480,"src":"/FluentHome/resources/tbg.jpg;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  28. <span id="form1:FluentHeader:headerpics"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:headerpics", {"id":"form1:FluentHeader:headerpics","height":72,"widgetType":"webui.suntheme.widget.image","style":"left: 360px; top: 0px; position: absolute","visible":true,"width":408,"src":"/FluentHome/resources/header.gif;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  29. <span id="form1:FluentHeader:headernavbar"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:headernavbar", {"id":"form1:FluentHeader:headernavbar","height":24,"widgetType":"webui.suntheme.widget.image","style":"left: 480px; top: 144px; position: absolute","visible":true,"width":288,"src":"/FluentHome/resources/navbar.jpg;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  30. <span id="form1:FluentHeader:links"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:links", {"id":"form1:FluentHeader:links","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"style":"color: white; font-family: 'Times New Roman','Times',serif; font-size: 18px; font-weight: bold; left: 504px; top: 144px; position: absolute; text-decoration: underline","contents":["Links"],"formId":"form1","params":[],"disabled":false});});</script>
  31. <span id="form1:FluentHeader:headerslogan"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:headerslogan", {"id":"form1:FluentHeader:headerslogan","height":25,"widgetType":"webui.suntheme.widget.image","style":"left: 120px; top: 168px; position: absolute","visible":true,"width":528,"src":"/FluentHome/resources/land.gif;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  32. <span id="form1:FluentHeader:contact"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:contact", {"id":"form1:FluentHeader:contact","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"style":"color: white; font-family: 'Times New Roman',Times,serif; font-size: 18px; font-weight: bold; left: 576px; top: 144px; position: absolute; text-decoration: underline","contents":["Contact Us"],"formId":"form1","params":[],"disabled":false});});</script>
  33. <span id="form1:FluentHeader:home"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:home", {"id":"form1:FluentHeader:home","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"style":"color: white; font-family: 'Times New Roman','Times',serif; font-size: 18px; font-weight: bold; left: 696px; top: 144px; position: absolute; text-decoration: underline","contents":["Home"],"formId":"form1","params":[],"href":"/FluentHome/faces/Page1.jsp;jsessionid=54b9d5d9e33b7047a60542d19f3a","disabled":false});});</script>
  34. <span id="form1:FluentHeader:sloganx2"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:sloganx2", {"id":"form1:FluentHeader:sloganx2","height":25,"widgetType":"webui.suntheme.widget.image","style":"left: 648px; top: 168px; position: absolute","visible":true,"width":120,"src":"/FluentHome/resources/nav2bg.jpg;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  35. <span id="form1:FluentHeader:sloganx1"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentHeader:sloganx1", {"id":"form1:FluentHeader:sloganx1","height":25,"widgetType":"webui.suntheme.widget.image","style":"left: 0px; top: 168px; position: absolute","visible":true,"width":120,"src":"/FluentHome/resources/nav2bg.jpg;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  36. </div></div><div style="height: 378px; left: 0px; top: 192px; position: absolute; width: 142px"><div style="background-color: rgb(153, 153, 255); height: 378px; width: 142px; -rave-layout: grid"><span id="form1:FluentLeftNav:accounts"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentLeftNav:accounts", {"id":"form1:FluentLeftNav:accounts","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"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","contents":["Accounts"],"formId":"form1","params":[],"href":"/FluentHome/faces/AccountsPage.jsp;jsessionid=54b9d5d9e33b7047a60542d19f3a","disabled":false});});</script>
  37. <span id="form1:FluentLeftNav:search"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentLeftNav:search", {"id":"form1:FluentLeftNav:search","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"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","contents":["Search"],"formId":"form1","params":[],"href":"/FluentHome/faces/SearchPage.jsp;jsessionid=54b9d5d9e33b7047a60542d19f3a","disabled":false});});</script>
  38. <span id="form1:FluentLeftNav:reports"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentLeftNav:reports", {"id":"form1:FluentLeftNav:reports","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"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","contents":["Reports"],"formId":"form1","params":[],"href":"faces/ReportsPage.jsp;jsessionid=54b9d5d9e33b7047a60542d19f3a","disabled":false});});</script>
  39. <span id="form1:FluentLeftNav:i_o"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentLeftNav:i_o", {"id":"form1:FluentLeftNav:i_o","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"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","contents":["I/O"],"formId":"form1","params":[],"href":"/FluentHome/faces/InputOutput.jsp;jsessionid=54b9d5d9e33b7047a60542d19f3a","disabled":false});});</script>
  40. <span id="form1:FluentLeftNav:tasks"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:FluentLeftNav:tasks", {"id":"form1:FluentLeftNav:tasks","widgetType":"webui.suntheme.widget.hyperlink","visible":true,"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","contents":["Tasks"],"formId":"form1","params":[],"disabled":false});});</script>
  41. </div></div><div style="height: 334px; left: 600px; top: 216px; position: absolute; width: 166px"><div style="background-color: rgb(153, 153, 255); height: 334px; width: 166px; -rave-layout: grid"><span id="form1:MissionStatment:staticText1"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:MissionStatment:staticText1", {"id":"form1:MissionStatment:staticText1","widgetType":"webui.suntheme.widget.staticText","style":"color: white; font-family: 'Times New Roman','Times',serif; font-size: 14px; font-weight: bold; height: 310px; left: 0px; top: 24px; position: absolute; text-align: left; width: 166px; word-spacing: 1.0","visible":true,"value":"By enabling its clients to purchase from the same wholesale markets that ESCO's do, Fluent removes the retail margin/profie component from its clients' energy costs.  When combined with customized risk management tools and full transparency of all costs, Fluent provides its clients complete control of their energy purchasing decisions.","escape":true});});</script>
  42. <span id="form1:MissionStatment:missionheader"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:MissionStatment:missionheader", {"id":"form1:MissionStatment:missionheader","height":24,"widgetType":"webui.suntheme.widget.image","style":"left: 0px; top: 0px; position: absolute","visible":true,"width":166,"src":"/FluentHome/resources/r1.jpg;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  43. </div></div><div style="height: 378px; left: 144px; top: 192px; position: absolute; width: 454px"><div style="height: 378px; width: 454px; -rave-layout: grid"><span id="form1:Home1:staticText1"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:Home1:staticText1", {"id":"form1:Home1:staticText1","widgetType":"webui.suntheme.widget.staticText","style":"color: black; font-family: 'Times New Roman','Times',serif; font-size: 14px; height: 118px; left: 24px; top: 24px; position: absolute; width: 286px","visible":true,"value":"Fluent Energy, formerly LepCorp (Leverage Energy Purchasing Corporation), was ceated in 1994 to assist organizations that wanted to be better informed when it came to making energy purchasing decisions, but lacked the expertise or resources to do so.","escape":true});});</script>
  44. <span id="form1:Home1:image1"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:Home1:image1", {"id":"form1:Home1:image1","height":168,"widgetType":"webui.suntheme.widget.image","style":"left: 312px; top: 24px; position: absolute","visible":true,"src":"/FluentHome/resources/front1.gif;jsessionid=54b9d5d9e33b7047a60542d19f3a","border":0});});</script>
  45. <span id="form1:Home1:staticText2"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:Home1:staticText2", {"id":"form1:Home1:staticText2","widgetType":"webui.suntheme.widget.staticText","style":"color: black; font-family: 'Times New Roman','Times',serif; font-size: 14px; height: 46px; left: 24px; top: 144px; position: absolute; width: 286px","visible":true,"value":"Since then, we have served as a trusted advisor in both a managerial and a consulting capacity to organizations interested in procuring wholesale ","escape":true});});</script>
  46. <span id="form1:Home1:staticText3"></span><script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.widget.common.replaceElement("form1:Home1:staticText3", {"id":"form1:Home1:staticText3","widgetType":"webui.suntheme.widget.staticText","style":"color: black; font-family: 'Times New Roman',Times,serif; font-size: 14px; height: 182px; left: 24px; top: 195px; position: absolute; width: 406px","visible":true,"value":"energy and acting as their own energy service company (ESCO).  Working with you, we can help you determine what is best for your organization, and make sure you are taking full advantage of the deregulated energy market.  We can also assist you in finding the perfect balance of savings and stability.  Our job is to provide you with these answers.  We make it easier to understand the energy world.  Our main goal is to guide you through the complexities of the energy market, so you can beter understand the choices available to you.  Our wide range of capabilities enables us to design energy procurement strategies that are tailored to your organization.","escape":true});});</script>
  47. </div></div>
  48. <input id="form1_hidden" name="form1_hidden" value="form1_hidden" type="hidden" />
  49. <input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="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" />
  50. </form>
  51. <script type="text/javascript">dojo.addOnLoad(function() {webui.suntheme.bootstrap.body = new webui.suntheme.body('/Page1.jsp', '/FluentHome/faces/Page1.jsp',null,null,'com_sun_webui_util_FocusManager_focusElementId',true);});</script>
  52. </body></html>
  53.  
  54.  
This is done in Netbeans 6.0. I put this request in the "javascript" forum, because I figured the onMouseOver would require some form of javascript expression.
Jul 2 '08 #3
Silgd1
25
I added the tags, but didn't seem to work
Jul 2 '08 #4
Silgd1
25
Nevermind everyone....figured it out.......thanks
Jul 2 '08 #5
acoder
16,027 Expert Mod 8TB
Is it the code tags or the actual problem that you've figured out?
Jul 2 '08 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Rob R. Ainscough | last post by:
I'm using .NET v1.1 with ASPX web page. I'm trying to have a RollOver hyperlink that will change images on an image control and update the text in a Label control. I've got the image swapping...
3
by: Vear | last post by:
Hi, I'm looking to change the cssclass on a hyperlink with the onmouseover. I've tried the 3 syntax's below but to no success. Can someone point me in the right direction. Thanks ...
5
by: Jonathan | last post by:
Hello All, I am in the process of creating a 2/3 level collapsible/exspanible menu (called "nav") where users can click on a category and have the submenus appear beneath it and so on (allow...
0
Denburt
by: Denburt | last post by:
This code is for a Toggle Button layout on a form, with this code you can set a number of toggle buttons visible and have multiple submenus that will stay hidden when not in use. My main menu is set...
2
by: az538 | last post by:
Hello All, I am having a problem with my menu and submenu system. It works like a champ in IE6 and Firefox but IE7 renders the submenus in incorrect positions on the page. Also, the menu system...
1
by: =?Utf-8?B?bW9sbHk=?= | last post by:
can you please take a look at website www.nooksack-tribe.org, and tell me why my sub-menu is not closing. I can go to a different web page in my site, and then click a home button, and the submenu...
4
by: =?Utf-8?B?QW1pciBUb2hpZGk=?= | last post by:
Hi I have a GridView that is displaying master records. Some of these records have child records. I would like to a column to my master GridView such that for each master record that has...
1
by: bhosalevivek | last post by:
I did this code from Dynamic Drive DHTML. it's working properly, but now I need submenu for "Submenu 1.2", means when I take mouse on "Submenu 1.2" I need to display "Submenu 1.2.1". I try to do...
5
by: remon87 | last post by:
I need some help. I have javasript that creates the submenu but it works if I have a text with css. I need it to do the same with a roll over images. so when I click on the image the submenu...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.