Copy link to clipboard
Copied
I run a custom validation script that I should type something on the field to show the right-side field (but I should hit ''enter" after typed to show)
That mean if I hit without "enter" then directly hit "tab", it will guide me to the below field.
Can I do something to show the right-side field while I am typing on the field (skip hitting "enter"), so that I can tab to that field directly.
As you can see: I type 123123--> enter-->the right-side field will be shown
Copy link to clipboard
Copied
Yes, you can do that. Let's say the field name you wish to show is "Text2", you can use this as 'Custom keystroke script' under 'Format' tab, when you put script it will disappear, but it will still work:
if(AFMergeChange(event).length != 0) this.getField("Text2").display = display.visible;
else
this.getField("Text2").display = display.hidden;
Copy link to clipboard
Copied
Your reply is really useful, not only this one!! Thanks a lot!!
Copy link to clipboard
Copied
By the way, is the font size of the options inside the dropdown list depending on the field size? It's too small, can I adjust a bigger font size?
Copy link to clipboard
Copied
It would depend on fields size only if it's set to 'Auto'.