Hello all, it's been some times since I used click and it looks like I lost good habits . :)
I am actually building an application that uses two classes Person and Workshop I could build a pretty user interface to CRUD those classes, everything works fine. Now, I want People to book workshops from a public web page. So basically I want to propose the users all workshops available (i thought doing that with a Edit-Table Pattern) and I want the user to check, in the table, the workshops they are interested in. And later get all clicked (selected) workshops and build a list out of that, and associate this list to a Person. So in my table, I got a few fields for the workshops. That's fine. But I don't know how to deal with the checkbox to select them. The problem I got is how can I associate a boolean in a column that is not part of the objects field, but rather associated to an object. Thanks in advance, Stéphane
