how to focus on the new window opened from JSF ?

how to focus on the new window opened from JSF ?

Hi guys,

I have commandLink with action which using javascript to open a new window(window.open()). Problem is, the new window opens at background behind the current window that user has to look for it. Is there any way to open it at front and focus? Thx in advance!

Here is my code:

public void openTrackDetail() { 

   FacesContext fc = FacesContext.getCurrentInstance();

   String server=getMyServer();

   String jsLink = "window.open('" + server + "', 'trackIDView');";

   JavascriptContext.addJavascriptCall(FacesContext.getCurrentInstance(), jsLink);

}

View Answers









Related Tutorials/Questions & Answers:

Ads