Hi,
The FormTables are only created when the select is submitted. When you
submit the FormTable it doesn't exist in the Page and you need to
recreate them.
I can see two ways to solve this.
- store the value of the select in the session and each time the page
is invoked, create the FormTables based on the select value.
- make you page stateful (Page.setStateful) which ensures that the
created FormTables are still available on subsequent requests. When
going down the stateful Page route, you won't want Click to nullify the
Table rows, so set Table.setNullifyRowListOnDestroy(false).
Personally I think it would be easier to break the functionality across
multiple pages where the first page passes the selection to the second
page, similar to a wizard based approach.
Hope this helps.
bob
easydoor wrote:
Hi Bob,
Could you answer to my issue, i need a solution
Thanks