我有一個要求tp彈出一個窗口顯示一個pdf頁面,執行無聲打印並關閉相同。執行打印後關閉彈出窗口
String s =
"var win = window.open('PrintPopUp.jsf','_blank',\"height=300,width=200,scrollbars=no," +
"status=no, resizable=no, screenx=0, screeny=0\");" +
"win.onclick= function(){ win.close();}"
我用上面的代碼來獲取彈出,上打印的點擊我寫這篇文章的代碼我的網頁及以下調用servlet來生成PDF格式;
FacesContext context = FacesContext.getCurrentInstance();
HttpServletRequest request = (HttpServletRequest)context.getExternalContext().getRequest();
HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
RequestDispatcher dispatcher = request.getRequestDispatcher("/hisprintservlet");
我的問題是這樣的,我已經能夠彈出窗口中,執行打印靜音但無論我做什麼,在彈出不會關閉。
我正在使用IE 11並且該項目使用ADF 12c。
請幫助..