Hi all, I have the following situation very often:
In Oracle Forms this was easy. In Designer i declared the important 8 columns as "context" and the rest of the columns in an "overflow area below". In Formspider i expected that the context of a datasource was always the same, so i did this:
The layout is perfect now. BUT, when i navigate through the rows in the grid, the panels do NOT show the details of the current row in the grid. They always stay on the first record. So, the context of a datasource is not synchronous accross all panels... What must i do to show the correct details cq fix this? Kind regards, Jan Willem Vermeer |
Hi Jan, To achieve this synchronization you can create a "dummy" action (Name=dummy and Procedure=null) and use this action in the selectionChanged event of your grid. This way, Formspider can synchronize all UI components with the current data each time the selected row changes.
Hope this helps, |
YES !! This works perfectly Ibrahim. Thanks. KR JW |