Hello everybody, I created a click page with a table. The table has 5 columns and x rows. The table is filled by using table.setRowList(resultList);
Up to this point everything works fine. But now I need some help. On the rendered page with the table I need to pick values from the table and pass them to another service (for example by selecting them in the table and pressing a submit button). The table looks like this: col1 col2 col2 col4 col5 ----------------------------------- val1 val2 val3 val4 val5 val6 val7 val8 val9 val10 I need to select val4 and val9 (same column but different rows) and pass them. At the moment I don't know how to achieve this. Has anybody a great and simple idea? Thanks a lot! Alex
