Hello,
I have a question about more fields's data merge and write to another field. could you pls help me to figure out. thanks
I tried to add codes in table default update method. but i found i had to click save button in form, Field 3 will be assigned to AABB.
public void update()
{
if(this.Field1 || this.Field2)
{
this.Field3 = this.Field1 + this.Field2;
}
super();
}
For sample: Field1=AA Field2=BB Field3 should be save as AABB
Question1 : Why does the update method execute after the form has been saved?
Question2: Good idea to realize this function?
Best Regards
