0
votes

In pop up window functionality, when pop up window is appeared after clicking over a link. When i press tab the cursor is moving on to main page instead of pop up window. Until i manually click over the pop up window. Is there any property to set in extjs,so that cursor control is over pop up window whenever the link is clicked instead of main window.

1
this is a browser design, it will behave differently on different browsers.LocustHorde
How can this be resolved ?any ideas?sample
does the pop-up need to have modal behavior?It Grunt

1 Answers

1
votes

You can manually give focus to the popup window, if you opened the popup like so:

var popup = window.open('http://google.com','window','height=500,width=300');

Then you can focus it with the following line:

if(window.focus) { popup.focus(); }