How we could do that ?
# suitescript
a
How we could do that ?
c
sounds like you need a client script on your suitelet form that uses jQuery to set dom focus
a
I tried following
document.getElementById('custpage_select_skill_fs_lbl').focus();
but it is not working
no error though
n
That is the id of a lbl. You need to get the id of input field. it will be something like inpt_custpage_select_skill_fs
n
Have you checked that your code fires when you change the dropdown? I would inspect the page and check the id's of what you're referencing too, entirely possible it doesn't match what you'd expect.
s
In your client script try to use this functionality inside "$(document).ready".
try this jQuery("div[nlmultidropdown=custpage_select_skill5]").focus();