A: 

I figured out an solution for this problem. Placing the textfield cursor position at 0 (zero) once the "OK" is clicked seems to fix this problem. Here is the code....

enter code here        symbolField.setCaretPosition(0);  
    qtyField.setCaretPosition(0);  
    costField.setCaretPosition(0); 
AKh