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.
I need to speed data entry of new parts by showing all parts that match the partial key as it is being typed. If two letters are typed, I will show all parts that match the first two letters. If three letters are typed, the list would be smaller, etc. (I trying to duplicate the way Excel works). I am using the KEYPRESS event to display a new list after each additional key is pressed. But the last key entered is always removed when I perform the lookup routine. Is it possible to get Maintain to work like Excel does with partial keys? Thanks, Kent
Windows2003 Server, WebFOCUS 7.7.02 Developers Studio and MRE
Posts: 63 | Location: Ft. Wayne, IN | Registered: February 20, 2007
The KEYPRESS is the problem. You really need the KEYUP event.
quote:
keydown Fires when the user depresses a key. It repeats while the user keeps the key depressed. keypress Fires when an actual character is being inserted in, for instance, a text input. It repeats while the user keeps the key depressed. keyup Fires when the user releases a key, after the default action of that key has been performed.
What you may be able to do is manually retrieve and add the KEYPRESS character to the search string. Should be able to get something on a search engine.
Alan. WF 7.705/8.007
Posts: 1451 | Location: Portugal | Registered: February 07, 2007
We have a filtered listbox technique that displays all selections, and limits them as the user enters data. You can base the filter either on data starting with the entered data or containing the entered data.
Kent, I sent you the example via e-mail.
Mark
Posts: 663 | Location: New York | Registered: May 08, 2003