Open a graph in a new page by clicking on it

I want to be able to open the graph by clicking on it in a new page. I've done some searching in the forums, but couldn't come up with anything that was this specific. If this isn't something that is possible, that would be nice to know as well, then I can move on. I can upload my VI as well if somebody wants to look at it.
Thanks
Solved!
Go to Solution.

Hi GerdW,
I do not know what do I do now. I'm not the professional in LabVIEW.
May you describe it for me in more detail.
thanks
Alpha
Is this translation better than the original?
Yes, submit translation
Thank you for your submission.
Example usage of "":
automatically translated by Google
من-pronoun
I
من, خودم, اول شخص مفرد
من-noun
manna
ترنجبین, مائده اسمانی, من, گزانگبین

Similar Messages

  • Open Word docs with the new Pages?

    Pages does not open. I had the new one installed but apparently had the old one still up. How can I open Word docs with the new Pages?

    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Once opened and saved in Pages 5.1 files can not be opened in Pages 5.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed over 95 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • Open Safari link as a new page?

    Is it possible to open a link in a new Safari page? (The equivalent to right-clicking on your desktop and selecting "open link in new page")

    No, there is not a way to open a link in a new page.
    You would need to open a new page, then type in the address.
    However, if you have an icon on your home screen for a particular website, it will open a new page when tapped on.
    Hope this helps.

  • Opening a new page on click of a button

    Hello Everybody,
    I have a small requirement. i need to open a new web page on click of a buttton on a bsp application. How do I achieve this technically?
    Thanks,
    Paul

    Hi!
    By impelemntign a litte javascript with window.open(...) that is called when button is clicked (onClientClick).
    Does that solve your issue?
    Regards,
    Volker

  • Opening a New page on click of a link in Struts PDK portlet

    Hi All,
    Please help me to sort out my issue..
    I created a portlet(say P1) using struts Portlet.That portlet is added to a portal page..which has some other portlets already(p2,p3,p4)...So my portal page has 4 portlets p1,p2,p3,p4..In Portlet P1 There is JSP which has a link inside...When i click on the link..I need to open a new JSP page with some prepopulated data inside it..Now the problem is..it is opening a page with data..but in the new page i am seeing all the remaining portlets as well..P1(with new data),P2,P3,P4 portlet..
    But i need to see only the JSP page with my new content..please help me with this..
    Here is the code...what i have written
    INDEX.JSP
    <%@ page contentType="text/html; charset=windows-1252"
    import="java.io.File, java.io.FilenameFilter"
    %>
    <%@ taglib uri="/WEB-INF/tlds/struts/pdk-struts-html.tld" prefix="html" %>
    <html>
    <head>
    <title>
    Struts Sample Portlet - Hello World...
    </title>
    <body>
    <html:link action="/sayActionHello" target="_blank">My Link</html:link>
    </body></html>
    ACTION CLASS
    public class SayHelloAction extends Action {
         public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    System.out.println("Inside execute ................................");
    PortletRenderRequest pReq = (PortletRenderRequest)
         request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    ProviderSession pSession = pReq.getSession();
    if(null != pSession){
         System.out.println("Inside---pSession...........................");
         pSession.setAttribute("sample","Sample Data for Testing");
    return mapping.findForward("success");
    Provider.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
    <session>true</session>
    <passAllUrlParams>true</passAllUrlParams>
    <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
    <id>1</id>
    <name>samstruts</name>
    <title>samstruts</title>
    <description>sample struts Portlet Description</description>
    <timeout>40</timeout>
    <showEditToPublic>false</showEditToPublic>
    <hasAbout>false</hasAbout>
    <showEdit>false</showEdit>
    <hasHelp>false</hasHelp>
    <showEditDefault>false</showEditDefault>
    <showDetails>false</showDetails>
    <renderer class="oracle.portal.provider.v2.render.RenderManager">
    <renderContainer>true</renderContainer>
    <renderCustomize>true</renderCustomize>
    <autoRedirect>true</autoRedirect>
    <contentType>text/html</contentType>
    <showPage class="oracle.portal.provider.v2.render.http.StrutsRenderer">
    <defaultAction>/sayHello.do</defaultAction>
    </showPage>
    </renderer>
    </portlet>
    </provider>
    Strutss-config
    PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
    <action-mappings>
    <action path="/sayHello" scope="session" type="com.up.tey.SayHelloAction">
    <forward name="success" path="/jsp/index.jsp"/>
    </action>
    <action path="/sayActionHello" scope="session" type="com.u p.tey.SayHelloAction1" input="/htdocs/jsps/index.jsp">
    <forward name="success" path="/jsps/indexsample.jsp"/>
    </action>
    </action-mappings>
    </struts-config>
    Indexsample.jsp
    <%@ page contentType="text/html; charset=windows-1252"
    import="java.io.File, java.io.FilenameFilter"
    %>
    <%@ taglib uri="/WEB-INF/tlds/struts/pdk-struts-html.tld" prefix="html" %>
    <html>
    <head>
    <title>
    Struts Sample Portlet - Hello World...
    </title>
    <body>
    <h1>HELLO WORLD Sample using Struts !!!!!!<%=session.getAttribute("sample")%></h1>
    </body></html>
    In new window i am cing Indexsample.jsp inside my P1 portlet..But the remaining 3 portlets(p2,p3,p4) are also there..Which i dont want..Please Help..this is really very urgent for me..

    HI
    i am also facing same problem with session but in simple portlet with ajax implementation.
    i am setting session in portlet jsp with following code using oracle application server portal 10g.
    (here portlet jsp means which is included from portlet.)
    session.setAttribute("map",map);(here session is implicit object )
    i want to call ajax jsp from portlet jsp with below code.(i.e setting session in portlet jsp and accessing in ajax jsp)
    var url = "<%=renderRequest.getContextPath()%>/AjaxProcessRequest.jsp?q=" + random;
    var pars = '&namespace=<portlet:namespace/>' +'&imagesPath=' + '<%=imagesPath%>';
    var myAjax = new Ajax.Updater(
    {success: 'emailbody'},
    url,
    method: 'get',
    parameters: pars,
    onFailure: reportError,
    evalScripts: true
    i am accessing map object from session in my AjaxProcessRequest.jsp as shown in below code.
    Map map=(Map)session.getAttribute("map"); (here session is implicit object )
    here map object is getting null from session.
    Please help on this if u know about this session.
    Regards
    Raju

  • HT5534 I  DOWNLOADED SOME UPDATE FOR PAGES, AND NOW MY OLD DOCUMENTS CANNOT  BE OPENED UNLESS I  BUY THE NEW PAGES APPLICATION.   THIS *****,  I HAVE WORK TO DO NOW AND AM NOT INTERESTED IN AN UPGRADE.

    I  downloaded some upgrade for pages, (not the new version for $19.95) now my computer will not open previous pages documents on my desktop without me buying the new version.  I am not interested in the new version as I have seen numerous negative comments.  I  simply want my system to work as it did before Apple pulled this trick to force me into buying the new pages.  Any suggestions would be appreciated.  I have work to do !

    You are aware that Pages for Mac and Pages for iPad /iPhone/iPod are 2 different program?
    Looks like you have Pages for Apple mobile devices but not for your Mac.
    If that's the case
    Pages for Mac: https://itunes.apple.com/au/app/pages/id409201541?mt=12
    Pages for iPad/iPhone/iPod touch: https://itunes.apple.com/au/app/pages/id361309726?mt=8

  • It would be nice if you could open a link in a new page in Safari

    And/or save images from the web to your phone.
    And/or have some form of Copy/Paste.

    Don't know about any change in the status quo for copy 'n paste or saving stuff locally, but opening links in new pages is addressed with a 'bookmarklet'. http://www.lifeclever.com/17-powerful-bookmarklets-for-your-iphone/

  • When say opening my mail box a new pages opens to a site not where I selected to go have run anitvirus scans with no problems found any ideas.

    When opening my email a new page opens in my browser it may be just a normal site or my WOT warns of danger. If I X the new browser and go back to my email all is normal until I ask for the email again a a later time. Have run numerous virus scans and superantispyware scans with no problems found. also when opening a google search when I click on a site a new google search opens with the same search information.

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it. (Even though I've now noticed you mis-spelled it! - anyway, never post your address in a forum.)
    You have a site here: http://virginiagordon.com/www.virginiagordon.com/WELCOME.html
    If that's not the page you are having trouble with, what is that page's URL?

  • I downloaded Maverick and now I can't open pages from the Dock.  The Pages icon just jumps up and down abut doesn't open.  However, I can one pages by clicking on the App. I have an iMac with iWork 08.

    Since upgrading to Maverick from Mountain Lion I am unable to open Pages from the Dock.  When I click on the pages icon in the dock the icon just keeps bouncing up and down.  However, I can open pages by clicking on the icon in the Apps folder.  No problems prior to upgrading to Maverick.

    Quit Pages. Drag its icon out of the Dock. Create a new one by dragging the application into the Dock. Test.

  • New page on click of absolute url

    I need IE to open new page of the absolute url when user click the url on initial page, but as result the new page always replace the inital page but not open a new session, I also refer to the threads in the forum like adding "sap-sessioncmd=open" or "syscmd=nocookie" but still does not work, can anyone give me any suggestion?following is my coding:
    Layout of the page1.htm:
    <htmlb:link id = "link1"
                text = "google with new session"
                reference = "http://www.google.com"
                target    = "_BLANK"
                onClick   = "LinkClick">
    <htmlb:link>
    OnInputProcessing:
      if event_id = cl_htmlb_manager=>event_id. " HTMLB event?
        data: lr_htmlb_event type ref to cl_htmlb_event.
        lr_htmlb_event = cl_htmlb_manager=>get_event( request ).
        if lr_htmlb_event is not initial.
          if lr_htmlb_event->server_event = 'LinkClick'.
            call method navigation->use_absolute_url.
            call method navigation->goto_page
              exporting
                url = 'http://www.google.com/ncr?sap-sessioncmd=open'
    *          url = 'http://www.google.com/ncr?sap-syscmd=nocookie'
                session = 'NEW'.
          endif.
        endif.
      endif.
    Message was edited by: Patrick Yan

    now i got a few minutes to work on this.
    here is a sample code.
    in the layout of the flow logic:
    i am using button for example,
    1) <htmlb:button id = 'CONTINUE'
          text          = "Continue"
          onClick       = "OnInputProcessing(continue)" />
    2) create a page attribute called index and also link the 'continue' page to the same page in the BSP
    3)in the layout
    <% IF INDEX = '1'.(use the dynamic link)
    l_url = 'http://www.google.com/'. %>
        <script type="text/javascript">
      <!--
        window.open("<%=l_url%>","ErrorLog","width=400,height=250,left=250,top=200 dependent=yes resizable=yes");
      //-->
    </script>
    4) in the oninput processing of this page
    assign event
      l_event = cl_htmlb_manager=>get_event( runtime->server->request ).
      IF l_event->id = 'CONTINUE'.
      l_index = '1'.
           navigation->set_parameter( name  = 'INDEX'
                                 value =  l_index ).
        navigation->NEXT_page( 'CONTINUE' ).
    endif.
    so when you click on the button you should get the google page in a popup.
    this is working for me. let me know if you are still having problms.
    regards,
    manasa

  • I lost my bookmark list where the dropdown doesnt work. Same goes for the webpage address tab where it just does not save. When I try to bookmark a new page after clicking "Bookmark this page", there was no response too. Can someone please help me???

    It was still functioning last night and before I close the firefox window, the problem started. The problem persist until now.
    1. Bookmark - tried to check the "help" list for lost bookmark but none of them seems to suit the problem i'm facing. The menu tab is there, but when i click on "Bookmarks", my previous bookmark list is not there. When I try to bookmark a new page, there is no window popping up (usually there is a small window pop-up to ask for the label of the website to be bookmarked).
    2. The website address tab - usually we have a list of website that we usually visit so we just need to click on the arrow and click on the webpage that we want to visit. But now, I have to type the website address every single time. There is no drop down when i click on the arrow.
    Can someone tell me what is wrong with it and please help me to solve this problem. THANK YOU VERY MUCH!!!

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • When I photo blog (Blogger) useing FireFox, I don't get the link to open my images in a new page like I do using IE. Why?

    I have a photo blog using Blogger and when I would submit a new post using IE, anyone was able to click on the image after I had posted it and it would open full screen in it's own page. I'm not sure what you call it but your arrow pointer would turn into a hand and you could click on it. Now, when I post using FireFox, I don't get that ability. If I use FireFox and view older post that were created with IE, the link is there but not the post from FF. It's only when I post using FF.
    Thanks,
    I Love FF

    I have a photo blog using Blogger and when I would submit a new post using IE, anyone was able to click on the image after I had posted it and it would open full screen in it's own page. I'm not sure what you call it but your arrow pointer would turn into a hand and you could click on it. Now, when I post using FireFox, I don't get that ability. If I use FireFox and view older post that were created with IE, the link is there but not the post from FF. It's only when I post using FF.
    Thanks,
    I Love FF

  • Open a link to a new page of the own website in a new window

    hi there
    i am working since a few weeks with iWeb and am in the process of making 3 websites. i have absolutely no idea of html and java script, and this is the main reason i use iWeb. i found a lot information in this forum - you guys are great. but still some questions left, so i will post a few questions (as seperate topics) now. the first one:
    iWeb allows a link to another website to open in a new window. i would like to do the same thing, but to another page in my own website. is this possible without any html commands? and if yes, how?
    example: on my site http://www.khanomTOPproperty.com i have a link in the footer "this site is... click HERE to find out". this should open in a new window.
    thanks and cheers
    george

    dear roddy
    wow, it is as simple as that. i love this forum - instead of thinking another many hours how to do it just ask a question...
    it would be nice if apple would mention these possibilities in the iWeb manual. would make things much easier. maybe they could take the major questions out of this forum and post the answers in the next update of the iWeb manual. let's dream a little bit.
    thanks again and warm regards
    george

  • HOw to open a link in a new page ?

    The current functionality is for the link to open in the same window. I create a menu using the wizard and created links to PSP. Clicking on the links replace my portal page and does what PSP is supposed to do. I want to launch a new window for the PSP to run it. Using portal menus.
    Is that possible ?

    Introduce a "target=blank" into the HTML code!

  • How to open a messageFileUpload in a new page.

    Hi,
    I use a messageFileUpload to allow users to save a image into a BLOB column.
    When the file is uplaoded the component changes to View link.
    When the view link is clicked, a dialog window with option of open, save, cancel appears. If open option selected, the image appears in the same window as the application. Then the only way left is to click back button to come to the application again.
    Is there a option to make the open option open the file content in a new window?
    With Regards
    Ganesh.

    It basically depends on the browser setting. Try your scenario on a different browser or look for the new window opening settings.
    --Shiv                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Color correction for indesign document?

    Hi, I've made a photo book in indesign but when test printed the yellows are coming out green. The problem is consistent throughout. Is there any way to correct the colour of the entire document? I have no control over the printer or colour profile u

  • Tracking Mouse X,Y w/o mouseListener

    I am writing a program where you draw with a paintbrush, you begin a stroke by clicking, you end a stroke by releasing. This was easily taken care of by a simple mouseListener. However I want to track everywhere the mouse goes while the mouse is clic

  • I want to reactivate my subscription

    I had to uninstall and then reinstall the creative cloud software and now it is asking me to renew my subscription.  I sign in to my account and I do not have a plan. What now?

  • Keyword problems on multiple photos

    How do I keyword several photos at once - have followed the instructions (selected all wanted pics) and used the hud to drag the keyword onto the selection, but it only goes onto the one photo not all selected, any ideas? T

  • Xp_cmdshell with elevated privilege

    Hi, I am facing issue with XP_cmdshell after upgrading OS form Windows 2003 to 2008.Actually there was one scheuled JOb in SQL server which run WMI command to fetch disk space details from all the server in our environemnet.Command I used for this is