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.
Hi, I have a situation in maintain where I have a Read/Write Grid to directly update the datasource.I have few dropdowns at the top based on which values are populated in Grid.Actually there many rows which is shown in a single page.I want to show them in multiple pages.Suppose there are 100 rows for single set of filter values in dropdown.I want to display it in 10 pages with each page containing 10 rows of data.There may be more than 100 rows which will be accomodated in subsequent rows.Can anyone please suggest me a way to handle this kind of scenario in maintain?
Thanks in advance.This message has been edited. Last edited by: Kerry,
There are two easy ways to accomplish this. The first, that I recommend, is to load ALL of the data into one main stack. Then copy 10 rows at a time into a display stack. For example:
For all next Records into Allstk Compute Page/i3=1;
Stack clear displayStk For 10 copy from Allstk(Page) into Displaystk
Then on your form have arrows that show Prev 10 and Next 10. If they select Prev, subtract 10 from Page. If Next, then add 10. If course you can add code to make sure that Page doesn't become negative or too high.
The other way is to ONLY retrieve 10 records at a time from the database but that wouldn't be as easy to go to the previous page.
Mark
Posts: 663 | Location: New York | Registered: May 08, 2003