I have list layout that the users want a check box that they can check and then a button with a method attached to tell the layout that all of the checked boxes need to be duplicated/copied/ or whatever they decide they want it to do.
Here is my problem. I don’t want to have a field in my table to handle this, it seems like a waste. I assume there is a way to do this similar to doing it on a web page where you have a check box input type that is not tied to a column in my table.
I assume that this is handles using java beans. Is that correct? Or is there a way to use html tags and attach the row id to it?
If the way to go is indeed java beans, how do they work?
If HTML tags is the way to go, how do you lay that code into the layout?