Focal Point Banner


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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Hide Select List
 Login/Join
 
Gold member
posted
To All You JavaScripters:
Does anyone know how to hide a select list upon entry into a html page ?
 
Posts: 69 | Location: OH | Registered: November 09, 2004Report This Post
<JG>
posted
Two questions have got to be asked.

Why do you want to hide it? And when do you want it to appear?

The second question is the most important.
 
Report This Post
<Grzegorz>
posted
One of the methods: object.style.display = "none" - to hide
and object.style.display = "" - to show

For example:




Hidden select
<script type="text/javascript">
function hideSelect() {
var select = document.getElementById("selectToHide");
select.style.display="none";
}









Hope this helps
Grzegorz

This message has been edited. Last edited by: <Mabel>,
 
Report This Post
Guru
posted Hide Post
This is not an answer to your question but you may find this site helpful.

Javascript
 
Posts: 406 | Location: Canada | Registered: May 31, 2004Report This Post
Gold member
posted Hide Post
Thanks Everyone. I got it working.
 
Posts: 69 | Location: OH | Registered: November 09, 2004Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders