donbruns

Members
  • Content count

    5
  • Joined

  • Last visited

About donbruns

  • Rank
    Forum Newbie
  1. Opening A New Page In An Iframe

    Thank you very much for your response. The code you provided opens a new webpage in a new window. I'm trying to open a new webpage in a PrettyPhoto lightbox. Any advice you can provide would be appreciated.
  2. Opening A New Page In An Iframe

    Thank you so much for your speedy reply. I tried the code that you suggested. When I click on the connector now, it opens the following URL in the same browser window... http://localhost:8500/LearningFusionCharts/MyFirstChart/<a%20href="http://www.fusioncharts.com"&target="_blank">FusionCharts</a>
  3. Opening A New Page In An Iframe

    I am working with a dragnode chart. I am trying to set it up so that clicking on each node opens a new HTML page in an iFrame contained within a prettyPhoto lightbox. I can get PrettyPhoto lighbox to load a static webpage into an iFrame using the following code... FusionCharts("myChartId").addEventListener('BeforeLinkedItemOpen', function() { $.prettyPhoto.open('ajaxPage.html?iframe=true&width=70%&height=70%','',''); } What I want to do is to replace "ajaxPage.html" with a variable page name, which I would pass from my XML file in the link= attribute. Something like... <connector strength='1' label='test' from='1' to='2' arrowAtStart='0' arrowAtEnd='1' link='[???]' /> I have not been able to find any such documentation on the FusionCharts site. I'm sure this must be possible. But I just don't know how to do it. Any advice you can offer would be greatly appreciated.
  4. Wow. That fixed it. Thank you so much for your speedy reply and for sharing your expertise! Best wishes! Don
  5. I am trying to render a dragNode chart using the javascript renderer... FusionCharts.setCurrentRenderer('javascript'); However, when I insert this line of code, my dragNode chart does not appear. Instead, I am finding the following error in the javascript console... Uncaught TypeError: Cannot call method 'replace' of undefined I have ensured that highcharts.js and jquery.min.js are in the same folder as my FusionCharts.js file. And the dragNode chart works fine when I render it using Flash. Any advice you could provide would be greatly appreciated. dragnode.xml dragnode.html