Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.1.0
-
Component/s: None
-
Labels:None
-
Environment:XP Pro, Eclipse-3.2.1, Jetty6x, Java5
-
Number of attachments :10
Description
OneToOne has been logically operated in the back end with.
Organization.JAVA
@OneToOne
@JoinTable(name = "OrganizationsDirectors",
joinColumns = @JoinColumn(name = "director_fk"),
inverseJoinColumns =
)
@PropertyDescriptor(readOnly = false, index = 2)
public Director getDirector()
Director.JAVA
@OneToOne
@JoinTable(name = "OrganizationsDirectors",
joinColumns = @JoinColumn(name = "organization_fk"),
inverseJoinColumns =
)
public Organization getOrganization()
But there is no user interface that operates creation of the initial director.
-
Hide
- 2007.04.23.one.to.one.trails.integrated.editor.zip
- 02/May/07 8:37 AM
- 1.17 MB
- Ken in nashua
-
- Documents and Settings/.../cards.txt 0.1 kB
- Prototype/Mavenized/.../DefaultEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultList.page 0.4 kB
- Prototype/Mavenized/.../DefaultSearch.page 0.5 kB
- Prototype/Mavenized/.../WEB-INF/Home.page 0.3 kB
- Prototype/Mavenized/.../NoteList.page 0.4 kB
- Prototype/Mavenized/.../DefaultEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultList.page 0.4 kB
- Prototype/Mavenized/.../DefaultSearch.page 0.5 kB
- Prototype/Mavenized/.../WEB-INF/Home.page 0.3 kB
- Prototype/Mavenized/.../NoteList.page 0.4 kB
- Prototype/Mavenized/.../DefaultEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultList.page 0.4 kB
- Prototype/Mavenized/.../DefaultSearch.page 0.5 kB
- Prototype/Mavenized/.../WEB-INF/Home.page 0.3 kB
- Prototype/Mavenized/.../RecipeEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultList.page 0.4 kB
- Prototype/Mavenized/.../DefaultSearch.page 0.5 kB
- Prototype/Mavenized/.../WEB-INF/Home.page 0.3 kB
- Prototype/Mavenized/.../RecipeEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultList.page 0.4 kB
- Prototype/Mavenized/.../DefaultSearch.page 0.5 kB
- Prototype/Mavenized/.../WEB-INF/Home.page 0.3 kB
- Prototype/Mavenized/.../TopicEdit.page 0.6 kB
- Prototype/Mavenized/.../DefaultEdit.page 0.5 kB
- Prototype/Mavenized/.../DefaultList.page 0.4 kB
- Prototype/Mavenized/.../DefaultSearch.page 0.5 kB
- Prototype/Mavenized/.../WEB-INF/Home.page 0.3 kB
-
- Director.java
- 08/May/07 9:42 AM
- 3 kB
- Ken in nashua
-
- Director.java
- 15/Mar/07 10:24 AM
- 2 kB
- Ken in nashua
-
- Organization.java
- 08/May/07 9:41 AM
- 9 kB
- Ken in nashua
-
- Organization.java
- 15/Mar/07 10:24 AM
- 9 kB
- Ken in nashua
-
- pom.xml
- 07/May/07 1:44 PM
- 11 kB
- Ken in nashua
-
- TRAILS-30.and.TRAILS-22.20070507-1020.patch
- 08/May/07 9:04 AM
- 109 kB
- Ken in nashua
-
- TRAILS-30.and.TRAILS-22.20070507-1020.patch
- 07/May/07 1:42 PM
- 106 kB
- Ken in nashua
-
- TRAILS-30.and.TRAILS-22.20070508-1523.patch
- 08/May/07 2:24 PM
- 120 kB
- Ken in nashua
-
- TRAILS-30-TRAILS-22-roster-example.patch
- 07/May/07 1:43 PM
- 7 kB
- Ken in nashua
Activity
Latest Patch file attached uses re-vamped AssociationCallback with instrumented OGNL.
Association still fails to stick.
Cannot get the association to stick outside of this OneToOne editor either. If I focus on instance editor for the association alone, it fails to stick there either.
Thinking it surrounds the AssociationSelect widget but getValue/setValue are being propagated in/out of that widget for the association property.
This can't be a Cascade issue can it ?
Will someone please look at this amd provide comment/input?
Thanks
Attached is a prototype that successfully implements front end for a hard OneToOne association.
There is a bug though. The OneToOne association in the back end is not sticking. A test was successfully performed that validates the mappings are working on hibernate. OGNL was implemented to sustain the inverse property of the OwningObjectReferenceDescriptor. This stick issue still persists.