How to open a link in dashboard in  a new window ?

Can anyone help me out in this ?
Thanks

Hi
Tried with the following formats..But getting syntax error:
[nQSError: 10058] A general error has occurred. [nQSError: 27002] Near <<>: Syntax error [nQSError: 26012] . (HY000)
Format 1(with using double quotes):
?a href="#" onclick="window.open('http://www.google.com');"?'||"Dim - Measure Group"."Measure Group Name"||' ?/a?
Format 2(without using double quotes):
?a href="#" onclick="window.open('http://www.google.com');"?'||Dim - Measure Group."Measure Group Name"||' ?/a?
Can u please suggest me what should i do ..
Edited by: user9546588 on Feb 20, 2009 12:44 AM

Similar Messages

  • Can you force a link inside a .pdf to open the "linked to" document in a new window?

    When I have a link inside my .pdf document - linking to another .pdf document or to a Word document - how can I force the linked-to document to open in a new window?
    I have a web site (business internal, so unfortunately I cannot point to it).  My HTML menu has links to .pdf documents - no problem.  However, once I open those .pdfs, they contain links to other .pdfs and to Word documents.  Clicking on these links, which reside inside my .pdfs, opens the "linked-to" docs in the same page.  How can I force them to open in a brand new frame?
    All of my .pdfs were originally created in Word, and in the Word versions, the links DO open into new frames.  I am not sure why, when I convert them to .pdfs, they lose this feature.
    Can anyone help?

    Hi Magenta,
    Would you mind reposting this question over on the Acrobat boards?  You've posted in the AIR forum and you'll have better luck with this over there.
    Thanks,
    Chris

  • How to open a 2nd WD View in a new window?

    Hi,
    my WD Component has a button which opens a new view. I would like to open this view in a new window.
    I tried to link two views of two windows with plugs, but it seems like I'm only able to navigate between views of the same window....
    Up to now my solution was to open the view in a pop up window. Now its neccessary to open the view in a new browser window.
    For the background; with click on the button a pdf is generated (Interactive Forms). It is ok to display the generated pdf in adobe acrobat reader directly as well.
    Any suggestions how to handle this?
    Thanks in advance,
    Tan

    >
    Tan Yildiz wrote:
    > Hi,
    >
    > my WD Component has a button which opens a new view. I would like to open this view in a new window.
    > I tried to link two views of two windows with plugs, but it seems like I'm only able to navigate between views of the same window....
    >
    > Up to now my solution was to open the view in a pop up window. Now its neccessary to open the view in a new browser window.
    >
    > For the background; with click on the button a pdf is generated (Interactive Forms). It is ok to display the generated pdf in adobe acrobat reader directly as well.
    >
    > Any suggestions how to handle this?
    >
    > Thanks in advance,
    > Tan
    if your purpose is to display a interactive form as external window then you have to understand that number of button clicks would result into number of external windows and number of sessions to backend as well. You can't see which external window is related to which data in your application, you cannot close it from your parent window. User has to do that explicitly.
    I would consider the following.
    Embed the display view into a separate window.
    use create_window method to show the window .

  • How to hide 'catalog','open',home' link from dashboard page in obiee11g ?

    Hi,
    how to hide 'catalog','open',home' link from dashboard page in obiee11g based one users/groups.
    http://imageshare.web.id/images/e7tosu6qtsa9zdl1a8w8.jpg
    i.e: some users shold not able to see 'open','catalog',home link from dashboard but some power user/groups can able to see the 'open','catalog',home link.
    Thanks
    Deva

    Hi,
    I don't want to remove totally, what i am asking is there any
    Possibility to do users/groups wise,
    E.x:
    Work around home page
    Setting home page each users/groups wise . I am expecting like that option to
    Do open and catalog link.
    Home link not a priority .
    http://obieeelegant.blogspot.com/2011/06/how-to-changing-theobiee11g-homepage.html
    Thank
    Deva
    http://obieeelegant.blogspot.com

  • How to open particular link or content in new tab

    how to open particular link or content in new tab.... as in ipad we just continue pressing and a option comes that open in new tab... exactly when i tried in macbook .....i was not able to do.... didn't find the answer after googling also. please suggest?

    Check your browser preferences.
    ex Safari>Preferences>General>

  • How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "

    JDeveloper 11g, Windows 7(64 bit), ADF Faces
    package view.backing;
    import java.beans.IntrospectionException;
    import java.util.ArrayList;
    import java.util.List;
    import org.apache.myfaces.trinidad.model.ChildPropertyTreeModel;
    import org.apache.myfaces.trinidad.model.TreeModel;
    public class TreeModelAdapter {
    private Object _instance = null;
    private transient TreeModel _model = null;
    public TreeModelAdapter() {
    ArrayList<TreeItem> rootTreeItems = new ArrayList<TreeItem>();
    TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com");
    TreeItem treeItem2 = new TreeItem("Dog", "http://www.someurl2.com");
    TreeItem treeItem3 = new TreeItem("Cat", "http://www.someurl3.com");
    TreeItem treeItem2_1 = new TreeItem("Blue Heeler", "http://www.someurl4.com");
    TreeItem treeItem2_1_1 = new TreeItem("Rover", "http://www.someurl5.com");
    TreeItem treeItem2_1_2 = new TreeItem("Ruffus", "http://www.someurl6.com");
    rootTreeItems.add(treeItem1);
    rootTreeItems.add(treeItem2);
    rootTreeItems.add(treeItem3);
    ArrayList<TreeItem> treeItem2Children = new ArrayList<TreeItem>();
    ArrayList<TreeItem> treeItem2_1Children = new ArrayList<TreeItem>();
    treeItem2Children.add(treeItem2_1);
    treeItem2.setChildren(treeItem2Children);
    treeItem2_1Children.add(treeItem2_1_1);
    treeItem2_1Children.add(treeItem2_1_2);
    treeItem2_1.setChildren(treeItem2_1Children);
    this.setListInstance(rootTreeItems);
    public TreeModel getModel() throws IntrospectionException {
    if (_model == null) {
    model = new ChildPropertyTreeModel(instance, "children");
    return _model;
    public void setListInstance(List instance) {
    _instance = instance;
    _model = null;
    How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com"); on a new page?

    In your af:tree nodeStamp facet you have access to the node (TreeItem in your case). If your TreeItem has a getter method for the url (you did not provide the TreeItem code) you can put an af:goLink in the nodeStamp and set the destination attribute to #{node.url} and set the TargetFrame of the golink to '_blank':
    <af:tree ...>
      <f:facet name="nodeStamp">
        <af:goLink text="goLink 1" id="gl3" destination="#{node.url}" targetFrame="_blank"/>Timo

  • How to open a link automatically in a new tab rather than right click and select open in a new tab?

    no details

    To open a link or Bookmark in a new tab, you can:
    *press the mouse scroll wheel on a link or Bookmark
    *hold down the CTRL key while left-clicking the link or Bookmark
    See:
    *http://www.7is7.com/software/firefox/shortcuts.html
    *https://support.mozilla.org/en-US/kb/Mouse%20shortcuts
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • I have some trouble with Safari!  Everytime i google something, I expect safari to open the link i click in the same window and same tab - as it did before - but now it always opens a new tab! I'm getting really tired of that! So please help me!

    I have some trouble with Safari! 
    Everytime i google something, I expect safari to open the link i click in the same window and same tab - as it did before - but now it always opens a new tab! I'm getting really tired of that! So please help me! I want safari to open the google search link in the same window and tab! How to fix that?
    Please help me!!!
    Thank you!

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • In iTunes 11 how can I view a playlist in a separate (new) window?

    In iTunes 11 how can I view a playlist in a separate (new) window? I always did this by double-clicking the playlist. That doesn't work now!

    found it - at least this is part of a solution -
    http://www.betalogue.com/2012/12/04/itunes-11-edit-playlist-to-work-around-the-s ingle-window-limitation/
    while the discussion in the link (here in this reply) does not tell us how to open a new window - it does tell us how to view any particular playlist and the entire library list at the same time in a split-window view - but there still does not appear to be a way to open two playlists at the same time.?

  • Can you open a second jsp page as popup/new window?

    Hi all gurus!
    I have a question regarding popups/new windows in an iview application. Instead of starting with a question let me instead describe what I want to do.
    We have a jsp page that presents a search and then the search result in a table where one column is "clickable". When the user clicks a cell a server round trip retreives data specific for that cell value. This is standard functionality and already fixed so here is what differes: we want a new jsp window to open like a popup, with the data retreived from the server round trip and at the same time the first page with the table shall still be there so that you just can close the popup and click the next cell which creates a new server round trip and a new jsp popup and so on.
    My solution which doesn't work yet: In application "a" I have a JavaScript for the clicked cell which opens another iview application "b" in a new window, by window.open("navurl_to_the_iview"), and that works fine.
    At the same time the value of the clicked cell is written to the data bean and the bean is put in the http session (since component session does not reach between applications).
    The second iview "b" retreives the bean from the http session and fills the jsp page with data.
    Here is now the problem: no data is displayed and this because the iview "b" retreives the bean BEFORE iview "a" has been able to put the bean/value into the http session. How do I know this for sure? Simple, if I do a refresh of iview "b" the value is displayed.
    I could do a JavaScript that recursively checks if the value in the bean is null or not but then I have to do a method that retreives the bean from the http session each time.
    This could work but I wonder if this is the most simple solution. So my question for you gents and madams is: do you know of a more simple solution?
    Best regards
    Benny Lange
    Edited by: Benny Lange on Oct 6, 2009 11:33 AM

    Hi you all.
    In this case the solution was to pass the id in the url to the second iview and let that iview use the id to retreive data from the backend system.
    But I still think the question is interesting, if it's possible to open a second jsp window after a server round trip and still have the first one open.
    All the best
    Benny

  • Links from applications in a new window

    It use to be that when I clicked on a link in Mail, it would open in Safari within a new window right on top. Now it opens in a new window under the one that is already open. Is there anyway to fix this? I don't want to open something new in another tab.

    Hi,
    I am having the same problem, but I do have (and have always had) the preference checked to select tabs and windows as they are created. I love Spaces, but this only happens when Spaces is active and I think this problem has been happening only since 10.5.3.
    With Mail.app in one space and Safari in another I click a known good link in Mail, Safari opens in Space 2 (correctly) with the new window opening and loading behind the Safari window that was previously open. It's driving me batty so any help is greatly appreciated.
    Thanks!

  • How do i move ipod nano content to a new Windows computer?  My old computer died and when i try to sync to itunes on my new Windows computer, it says it will erase what's on the ipod.  I can't seem to de-authorize the old computer (it's been recycled).

    Hi, I'm an ipod newbie, and unsure of what product i have-i believe it's an ipod nano, but can't seem to find any info on itunes that will identify my product.
    how do i move ipod nano music to a new Windows 7 computer?  My old computer died and when i try to sync to itunes on my new Windows computer, it says it will erase what's on the ipod.  I can't seem to de-authorize the old computer (it's been recycled).  Does this mean I have to start all over and read in my CD's into itunes?  seems very inflexible/inelegant...
    thanks for your help, sorry if this question has already been answered before!

    Is there no ANSWER TO THIS PROBLEM?

  • Every time i click on a link another random link pops up in a new window. Does this mean i have a virus on my mac?

    every time i click on a link another random link pops up in a new window. Does this mean i have a virus on my mac?

    No; it means that the computer has adware. Click here and follow the instructions, or if there’s a type of adware not covered by them on the computer, these ones. If you're willing to use a tool to remove it(you don't need to, but may find it easier), you can instead run Adware Medic; this link is a direct download.
    (122523)

  • How to Open External Links in a New Tab

    I want links in web pages to open in the current tab so I have browser.link.open_newwindow=1. But how do I make links from extenal applications open in a new tab?

    Try setting the following to 3, not really sure if preference was actually removed or just won't accept 2, the intent was that the two variables be the same (I think)
    browser.link.open_external -- Where to open links sent to the browser from an external application
    * 2 (default in SeaMonkey): Opens external links in a new window
    * 3 (default in Firefox): Opens external links in a new tab in the most recent window
    * 1 (or anything else): Opens external links in current window
    Note: In Firefox 2 and above, via “Tools → Options → Tabs → New pages should be opened in:” (same as browser.link. open_newwindow)
    Pref removed from Firefox 3.5

  • How to open a link in a Window NOT a Tab in OS X Mountain Lion

    For those of you who Hate having links open in tabs, especially when you have a window open and minimized to your doc.  The link will take that
    minimized window and use it to stick a tab in it and then open the link........WHAT A PAIN!
    Here's how to avoid that problem and have the links open in a Brand New Window.
    Safari/Preferences/Tabs
    Uncheck both boxes
    Now, the instructions below change to window instructions (not tab instructions)
    See the little window to the right of:  Opens pages in tabs instead of windows:  Click the little arrows and select NEVER! 
    Now you have to insert a checkmark in the 1st box:  (Butterfly) - click opens link in a new tab
    The below instructions will revert back to tab instructions, Do Not Worry.  All Is Good.
    The fact that you have selected NEVER, means that NOW, the links will open in Brand New Windows!  Yeah!!!
    Close the Preference Window and click away. 

    vveena123 wrote:
    Hi everyone,
    I immediately need help,plz help me.this is not the way to get help around here
    try stating the problem professionally, without the assumption that your problem is important to others
    I have a jsp which has a link that should open in a new window.
    when the user clicks again the same link it should not open in another new window instead it should open the previous window.this has nothing to do with java or jsp
    this is an html target question
    testing
    say if a user clicks the link 5 times it shud not open 5 windows instead only 1
    Thanks in advanceuse target="new" i think

Maybe you are looking for

  • Adobe Flash CS4 Quits when opening any file

    Hello, I hope someone here can help me figure out why my Flash CS4 on a Mac 10.6.2 machine crashes unexpectedly every time I open a file. (I have posted the entire crash log below) The program will open, and even stay open when I choose a .fla file f

  • Advantages of using Oracle with Unix over Windows server

    Hi there, I want some article/document which depicts the advantages of using Oracle with Unix (say HP-UX or Solaris backend). Actually the plan is to use some Data Warehousing applications using Cognos Poweplay, ReportNet and either Decision Stream o

  • Lumia 720 screen cracked

    Dear Nokia Support team, couple of questions on Nokia Lumia 720 - does the screen crack after falling from 3 ft given it is made out of gorilla glass? - can this be covered in the warranty? my device is just about 8 months old, and performing quite w

  • Ship to Party_billing

    Hi Friends, I have my billing document number and need to get the ship to party for the same...any table..??? Regards

  • Do you have to delete current (CS6) Illustrator preferences on Mac Os X?

    I have recently purchased the Adobe Illustrator CS6 program & Adobe CS6 Classroom in a Book. I am familiar with the Adobe InDesign & Adobe Photoshop programs, but I have never had to restore/delete default preferences. I was able to locate the Adobe