Popup window in OBIEE
We can open any sites or drill down report from our dashboard page by clicking on data value of report. Here is the original JavaScript for it… <script language="javascript" type="text/javascript"> <!-- function popitup(url) { newwindow=window.open(url,'name','height=200,width=150'); if (window.focus) {newwindow.focus()} return false; } // --> </script> Then, you link to it by: <a href="popupex.html" onclick="return popitup('popupex.html')" >Link to...
Read More