Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Shuttle Tooltip

Rose ElleMar 18 2011 — edited Jun 3 2011
Hello,

Based on the several posts in the forum, I created a Shuttle with various features. As the text items can't be wrapped in the Shuttle, I wanted to create a tool tip so that the user can see the entire text. I managed to create one when the user clicks on an item. But, I would really likes to show the tool tip for <font color="red">onmouseover</font> event.


Here is what I have so far:

<b>Page html header</b>
<script type="text/javascript">

function displayHelp(event, pItem) {
var cnt = 0;
var ind = 0;
  for(var i=0; i < pItem.length; i++) {
    if(pItem.selected) {
cnt++;
ind = i;
}
}
if(cnt == 1) {
toolTip_enable(event, pItem, pItem[ind].text);
}
}

</script>

<head>
<style type="text/css">
#P1_VISITED_LEFT option{color:red}
#P1_VISITED_RIGHT option{color:green}
</style>
</head>
and <b>HTML FORM ELEMENT ATTRIBUTE</b> contains the following:
style=width:350px; onclick="displayHelp(event,this);"
I am using Apex 3.2 but the same works in Apex 4.0 as well. I have created an application at http://apex.oracle.com/pls/apex/f?p=37387:1:955210098693100:::::


Any help is appreciated in making this work for <font color="red">onmouseover</font>



Thanks,
Rose                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
This post has been answered by 828941 on Mar 18 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 1 2011
Added on Mar 18 2011
4 comments
948 views