This topic is locked
[SOLVED]

PHPR 10.5 Set Focus To Search Field on List Page Load

4/5/2021 2:13:35 PM
PHPRunner General questions
K
klyle author

var ctrl = Runner.getControl(pageid, 'simple_search');
ctrl.setFocus();

is not working...got the control name directly from the Designer.

K
klyle author 4/5/2021

Runner.getControl(pageid, 'search_panel');

doesn't work, either.

K
klyle author 4/5/2021

What works for me is:

document.getElementById("ctlSearchFor1").focus();

in the JS OnLoad event.

Good Luck!