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 am using a read/write grid with around 15 columns being displayed. I need to display four of these columns(Region, Market, Site, WorkType) as dynamic chained drop downs. Region>market>Site>Worktype is the sequence of dependency I use different fex files to populate these drop downs dynamically. Can you please suggest the events that I should use to change drop downs?
As of now I am using OnEditFinish to do field level validation. OnRowChange event is used for populating one drop down(region).
What all event do I use to populate the other drop downs? Example I select a value from region dropdown and market drop down gets populated. I select from market, site gets populated. Select site, Worktype gets populated. Any sample would be helpful.
Thanks, NasarThis message has been edited. Last edited by: <Kathryn Henning>,
8.06 Windows
Posts: 19 | Location: India | Registered: April 24, 2014
Nassar Is it necessary that all this be done in a grid? Is the user going to be changing multiple rows of data at a time? If not, could they select a row, make selections from multiple drop boxes, and then display the new record in the grid?
The issue with the drop downs in the grid is, the only way to populate the second drop down based on the selection from the first drop down is to return to the server, load the stack and refresh the form. When we do that, the other combo boxes will refresh back to the top.
If you MUST use a grid, and make sure it is the JS grid, you could create an onChange event on the drop down boxes that will pass the selection back to Maintain and load up the next drop box. If it is at all possible NOT to use a grid then your coding will be a lot easier.
Mark
Posts: 663 | Location: New York | Registered: May 08, 2003
Ok Using the new JS Grid and the combobox option for each cell, I was able to create a demo to do this. When a user makes a selection from a drop down, a case is triggered that loads up a stack based on the selected value. Those stack values are computed into an array, and that array populates the next drop down box, etc.
The only issue with doing this is that the form is going to refresh every time you return to the server to load up the next box. I am not going to post the code. If anyone is interested I will send it to you.
Mark
Posts: 663 | Location: New York | Registered: May 08, 2003