Hello, I have an application were you can select entries from a pageable data table with the help of a boolean checkbox. Then I have to proceed to a non jsf servlet.
Now to my problem: If I just use a plain link the data (which entries were selected) doesn't get submitted before going to the servlet. If I scroll through the table before clicking on the link, the selected entries are submitted and saved in the faces context. Everything works fine then. But it isn't practicable for the user to scroll every time before clicking on the link. Using onclick="submit()" in the booleanCheckbox Component is too slow, as it renders the page new with every selected Item. How can I solve this problem? I have to go to a normal URL with 2 parameters (like this: http://localhost:8080/application/application.proxy?PARAM1=test&PARAM2=test2) Michael

