As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Hello, i am building a HTML Form with some listboxes and i want to add mouseover function on the content of the list_boxes. The contentent is sometimes to large for the list_box width and so i think a mouseover makes sence.
ChristianThis message has been edited. Last edited by: Kerry,
WF Production Version: 7.7.02M WF Test Version: 7.7.02M Developer Studio: 7.7.02 HTML, EXL2K, FLEX, PDF,PPT
in my form i have a listbox with suppliernames rundabout 300, this listbox has a width of 200px and i can not make it wider. i think a mouseover obove the supllier shows the full name, so im sure, that i chosed the right one.
Christian
WF Production Version: 7.7.02M WF Test Version: 7.7.02M Developer Studio: 7.7.02 HTML, EXL2K, FLEX, PDF,PPT
I would have thought that this is a simple piece of javascript.
Also, it depends on which browser you are using.
The title attribute will show on most browsers, the other option is the mouse over/out.
There are probably many more.
<html>
<head>
<script type="text/javascript">
<!--
function valdisp(_Obj,_Over) {
var _DispObj = document.getElementById('valititle') ;
if (_Over) {
_DispObj.innerText=_Obj.options[_Obj.selectedIndex].text ;
}
else {
_DispObj.innerText=" " ;
}
}
//-->
</script>
</head>
<body>
<span name=valititle id=valititle></span>
<br>
<select name="valselc" style="width:100px" onmouseover="valdisp(this,true)" onmouseout="valdisp(this,false)">
<option value="1" title="short value" selected>short value
<option value="2" title="long value number 1">long value number 1
<option value="3" title="long value number 2">long value number 2
<option value="4" title="long value number 3">long value number 3
</select>
</body>
</html>