Let's talk about the GXT v3 Fields.
There are two frames A & B.
Frame A has a set of fields and a submit button SA. Submit button reads the Fields in Frame A. Frame B has only a submit button SB, which reads the Fields in Frame A.
Perform the following steps.
Perform the following alternate steps.
This is problematic for me. Therefore, I wish to know the difference in the onblur actions of the fields in Frame A between clicking on button SA and button SB.
What actions does onblur of Field F1 performs when clicking on Frame A that the onblur of Field F1 does not perform when clicking on Frame B?
If I know that difference, then I would be able to execute that difference.
The solution was simple.
Simply choose any two fields in frame A.
public void focusA(){
frameA.getField1().focus();
frameA.getField2().focus();
frameA.focus();
}
The button click handler in Frame B should call focusA() before flushing the field values.
What focusA() does is