load swf in jquery ui dialog

2k Views Asked by At

I am using fusionmaps from the fusionCharts suite. I have searched all their documentation and knowledge base to see how to do this but have had no luck, so I am reaching out to you guys.

I have a map (swf file) that takes data from an xml doc to build its data. Within that xml, for a specific entity, I am able to make a javascript call. In the file that the swf is on, I have my JS and the jquery library. I am ultimately trying to get another swf file to popup within the UI dialog box. I am not sure how to do this, if possible. I get the dialog box to popup, but it is empty. The swf file I am wishing to place in there loads on top of my other swf file. Any suggestions?

Here is some of my code.

<script type="text/javascript"><!--
$(document).ready(function() { 
    $("#dialogContainer").dialog({
        bgiframe: true,
        height: 500,
        width: 600,
        modal: true,
        autoOpen: false,
        buttons: { "Close": function() { $(this).dialog("close"); }},
        show: 'fold',
        hide: 'fold'
    });
}); //Close ready function  


function loadDialog(continent) {
    //var url = 'showDetails.cfm?region=' + continent;
    //$("#dialogContainer").html('Loading. Please wait...');
    $.ajax({
        type: "post",
        url: 'showDetails.cfm',
        cache: false,
        //dataType: 'html',
        data: 'region=' + continent,
        beforeSend: function() {$('#dialogContainer').html('Loading. Please wait...').dialog('open');},
        success: function(msg) {$('#dialogContainer').html(msg);},
        error: function(msg) {$('#dialogContainer').html(msg);} 
    });
}

My fusionmap call

<script type="text/javascript">
var map = new FusionMaps("Maps/FCMap_World8.swf", "Map1Id", "500", "300", "0", "0");
map.setDataURL("WorldData2.xml");
map.render("mapdiv");     
</script>

I know this is a long shot on this question, but just hoping. Thanks for looking and any suggestions you may have.

Chris

2

There are 2 best solutions below

0
On

I can forward you the resources and sample codes needed to render FusionCharts on jQuery modal window (dialog).

A very different implementation of the same (using the LinkedCharts) feature of FusionCharts, has been put up at PowerCharts code samples documentation.

Steps needed to render FusionCharts within jQuery Dialog

Step 1: Create HTML dialog container

Anywhere on your page, create a blank <div> and give it a unique id.

<div id="chart-container"></div>

Step 2: Create jQuery Dialog and FusionCharts object

On page load (jQuery document ready) convert the afore-created division into jQuery dialog box.

<script type="text/javascript"><!--

// Globally accessible variable for later use
var jqDialog; 

// Create dialog box on document ready.
$(document).ready(function() {
    jqDialog = $('#chart-container').dialog({
        autoOpen: false,
        width: 550,
        height: 320,
        title : 'FusionCharts in jQuery Dialog'
    });
});

var myChart = new FusionCharts({
    swfUrl: 'Charts/Column2D.swf',
    width: '100%', height: '100%',
    renderAt: 'chart-container'
});

// --></script>

Step 3: Create a Function to load FusionCharts

Now, we create a JavaScript function that loads FusionCharts and opens the dialog.

<script type="text/javascript"><!--

function loadChartInDialog () {
    jqDialog.dialog('open'); // open dialog
    myChart.setXMLUrl('Data.xml'); // set data of chart
    myChart.render(); // render the chart.
}
//--></script>

Now, when needed, user can call this loadChartInDialog function to open the dialog and load the chart.

0
On

If you are using FusionCharts earlier to 3.2 version you would need to set the wmode of the chart to opaque or transparent.

There is a sample here which can help :

http://www.igcomm.com/show/maps/drill/jQuery

Here 3.1 FusionMaps and 3.1.1 FusionCharts has been used. a screenshot is as follows:

FusionCharts in jQuery dialog opening as drilldown after map entity is clicked

The code is as follows:

<html>
  <head>
    <!-- Load FusionMaps 3.1 JavaScript wrapper -->
    <script language="JavaScript" src="FusionMaps.js"></script>
    <!-- Load FusionCharts 3.1.1 JavaScript wrapper -->
    <script language="JavaScript" src="FusionCharts.js"></script>
    <!-- Load jQuery UI resources to load jQuery dialog -->
    <link href="jquery.ui/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script src="jquery.ui/jquery.min.js" type="text/javascript"></script>
    <script src="jquery.ui/jquery-ui.min.js" type="text/javascript"></script>
  </head>
  <body>
    <!-- Declare map and chart container DIVs -->
    <div id="mapdiv" align="center">FusionMaps will load here!</div>
    <div id="chartContainer" style="width:300px;height:300px;">FusionCharts will load here!</div>

    <script type="text/javascript"><!--

       // Declare jQuery dialog on the chart container
       var dialog;
       $(document).ready(function() {
            dialog = $('#chartContainer').dialog({
                autoOpen: false,
                width: 340,
                height: 370,
            });
        });

       // Define and render map of World
       // In the XML data of the map each entity is linked to a JavaScript function showChart 
       // where respective entity id is passed
       var map = new FusionMaps("FCMap_World.swf", "Map1Id", "700", "450", "0", "0");
       // set map to opaque mode
       map.setTransparent(false);
       // If you wish you can set map to transparent mode uncommenting the line below
       //map.setTransparent(true);
       map.setDataURL("mapdata.xml");          
       map.render("mapdiv");


      // This function is called when a Map entity is clicked
      // It takes id as parameter where respective entity id is passed         
      function showChart(id)
      {

        // Stores the full name of each entity with resepct to the id
        var mapNames = {"NA" : "Noth America" , "SA" : "South America" , "AS" : "Asia" , "EU" : "Europe", "AF" : "Africa", "AU" : "Australia"};

        // Render chart
        var chart = new FusionMaps("Pie2D.swf", "chartId", "300", "300", "0", "0");

        // Set chart to opaque mode
        chart.setTransparent(false);
        // f you wish you can set chart to transparent mode uncommenting the line below
        //chart.setTransparent(true);

        // In this simple same detailed data for each map is stored in different files
        // The files are named as per the id
        chart.setDataURL(id+"Chart.xml");          
        chart.render("chartContainer");

        // Sets the dialog's title with the full name of the clicked entity
        dialog.dialog( "option", "title", 'Chart of ' + mapNames[id] );
        // Show the jQuery dialog which contains the chart
        dialog.dialog('open');
      }
    // -->   
    </script>
  </body>
</html>

There is download of the source too : http://www.igcomm.com/show/maps/drill/jQuery/download.zip .