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.
Does anyone know the maximum number of selections that can be displayed in a list box? Thanks.This message has been edited. Last edited by: Michele Brooks,
I don't know of a limit. But for practical purposes if you are populating a list box with many choices you might want to look into making it an auto-complete list box.
Squatch, great suggestion but don't know if this will work with a year/month list of dates. The html page originally used the calendar feature but now we want the users to select a start year/month and an ending year/month, eliminating the yymd option using the calendar.
So how many year/month selections will be in a list box? Unless you are going far back in time I don't think you need to worry about maxing out the list box.
App Studio WebFOCUS 8.1.05M Windows, All Outputs
Posts: 594 | Location: Michigan | Registered: September 04, 2015
A trick I use sometimes is to have a month dropdown list chained from a year dropdown list.
The month list contains values for all months in the year (201501, 201502, ..., 201512), but displays the months ("January", "February", ..., "December").
That way, you get both a limited list of years and a list with never more than 12 months.
You can even tack a 01 and a 31 to those values respectively if you intend to use them as start and en date ranges respectively. Or use a different date representation format if that better suits your requirements, of course
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
Thanks to both of you for responding to my request. The project lead suggested to display the latest year first and the list box will go back to 2013. As you stated Squatch, I shouldn't have to worry about maxing out the list box.
Wep5622, thanks for the cool suggestion on how to pull the dates in a different way. I will certainly consider this suggestion if the need arises.