Hi Guys
I have configured the onPostBack callback in the modeler and I am
overriding it as below.
"
public UUID getUserMasterUUID() {
return UUID.fromString(getUserMasterId()); }
public void setUserMasterUUID(UUID uuid) {
setUserMasterId(uuid.toString()); }
@Override
protected void onPostAdd() {
setUserMasterId(UUID.randomUUID().toString()); }
"
However this doesn't seem to be working. Even after initializing the
objects from the ObjectContext - there is no valid id in the objects - as
if this onPostAdd is never called [debugger is not hitting the breakpoint
inside onPostAdd()].
"UserMaster um = oc.newObject(UserMaster.class);"
Any thoughts on this?
Thanks
Kanwar Manish