When using the crud functionally if you have an object that references to an other object like so:
@ManyToOne(optional=true)
private Activity duplicateOf;
There seems to be no way to select a null value.
Adding the following inside the form tags solves the issue:
<form:option value="" />
Just making sure I'm not missing something or if I'm doing something wrong, is there some way to go about this so Roo does this automatically?


Reply With Quote
