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
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.
Step 2: Create jQuery Dialog and FusionCharts object
On page load (jQuery document ready) convert the afore-created division into jQuery dialog box.
Step 3: Create a Function to load FusionCharts
Now, we create a JavaScript function that loads FusionCharts and opens the dialog.
Now, when needed, user can call this
loadChartInDialog
function to open the dialog and load the chart.