I have a model problem! I have constructed two tables in a parent child relationship structure using two @ManytoOne relationships from a node table to a relationship table table 1 - node table called - CrossFuncTeam table 2 - relationship table called - CrossFuncTeamRel CrossFuncTeam (node) works fine and is defined as public class CrossFuncTeam { @Id @GeneratedValue(generator="system-uuid") @Hidden @GenericGenerator(name="system-uuid", strategy = "uuid") @Column(length=32) String oid; // Property...
Thank you your help Javier, it worked perfectly.
Hello I am new to openxava. The many-to-one, only allows me to lookup a table in a combo box from another table for a description attribute (one field only). My plan is to take two fields like firstName and Surname then concaterate them as a string into the description filed for the look-up Is this the best way of doing this? if so how do I construct the concatenation? Thanks in advance