Hi,
I have a table to entities that I get from my database, the number of
entities can increase and decrease as these entities can be added or
deleted. I want to be able to edit the entities in the table. The first
column of every row has a check box to indicate whether that row should be
updated w
Thanks Thiago, that worked a treat :)
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/form-for-nested-entity-tp4264623p4271479.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
-
To un
Hi, I have a question about forms. I want to create a form for an entity
class, however the entity class contains references to other entities. For
example:
class Item {
long id;
String name;
String desc;
Media media;
...
}
class Media {
String filename;
String type;
...
}
When I