Hello, Say I have the following form in a web page: FirstName: --------- LastName : --------- Age : ---(selectOneMenu)
Below comes data from a jsf h:datatable component as follows: FirstName LastName Age Bob Smith 42 LoadButton John Fritz 26 LoadButton I want for the user to load any line he/she wants into the form. The problem I have is that the loadAction attached to the LoadButton is invoked during invokeApplication phase and therefore too late. I use component binding. I only have jsf 1.1 available and therefore cannot alter the lifecycle. Note that the "Age" field is populated from a database. What strategy can I use? Julien.

