TextField_1 is visible and has limitation containing only 20 character.
TextField_2 is hidden.
When user will cross 20 charcter, automatically TextField_2 will be visible and cursor will go into this field.
Is it possible. How can we solve it?
Solved! Go to Solution.
Views
Replies
Total Likes
On the "full" event of TextField_1 you can use:
TextField_2.presence = "visible";
xfa.host.setFocus(TextField_2);
Be aware that the 21st character will be lost, but the 2nd field will become visible and the cursor will appear there. Is this an option?
Views
Replies
Total Likes
On the "full" event of TextField_1 you can use:
TextField_2.presence = "visible";
xfa.host.setFocus(TextField_2);
Be aware that the 21st character will be lost, but the 2nd field will become visible and the cursor will appear there. Is this an option?
Views
Replies
Total Likes
Great !!!!!!!!!!!!
Thanks a lot.
Views
Replies
Total Likes