This option should make it so that when the user clicks Tab on the keyboard, the focus jumps to the next UI component (as it does in HTML web form). Instead, in EditText, an actual TAB character gets added then the focus goes to the next component. It should only be one or the other, not both. In the current situation, people very often add a tab to the end of their text--I know as I've been dealing with users doing this for years and have to sanitize the data 🙂
If there is a need to allow the TAB character, then EditText should get a new parameter:
AllowTab <Boolean false> : When on, enter a TAB character and do not go to next component; when off (default), simple go to next component.
Show More