Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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.
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?
View solution in original post
Great !!!!!!!!!!!!
Thanks a lot.
Views
Likes
Replies