Some Java Studio Creator users have asked in the forum, if it is possible to make the new Table component to behave like a multi column check box. The answer is - yes. The new table component bundled with Creator 2 is a very flexible component and you can easily write some code to make it work as desired above. This is how it looks after deployment. The two selected columns can be deleted by clicking the button delete

To put this in to work.
Now the user is having a table with check boxes in the first column. A little effort is need to wire up the checkboxes to do some work.
function initAllRows() {
var table = document.getElementById("form1:table1");
table.initAllRows();
}
Note: Unfortunately, for Creator 2, the design time does not do the above steps automatically for the user. However, I've added this to my task list to implement it for the next release of Creator.