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.
how do i display information on a drop down box efficiently? Currently, there's about 27,000 rows that are being retrieved and it takes forever to display information.
jbondyThis message has been edited. Last edited by: Kerry,
The first question to ask: "is 27,000 option values in the drop-down list efficient? Do you really want the user to scroll through 27,000 values looking for the right one(s)? Perhaps it would make more business sense to have a series of "chained" drop-down list boxes.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
how do i display information on a drop down box efficiently?
It depends upon your skill level. As Francis and Waz mention above, 27000 items is rather too many for a single drop down.
If your skill in JavaScript is sufficient then you could limit the number of items according to characters being typed by the user. Alternatively you could provide multiple chained drop downs to provide a progressive filtering of the 27000. Another method might be one I suggested at Summit last year. etc. etc. etc.
There are many ways to make your end user experience more efficient and (as I mentioned above), the limiting factor(s) include skill levels (not only of the developer but of those people destined to support the code) and imagination.
Good luck
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
There are many ways to make your end user experience more efficient and (as I mentioned above), the limiting factor(s) include skill levels (not only of the developer but of those people destined to support the code) and imagination.