tommytob

Members
  • Content count

    7
  • Joined

  • Last visited

About tommytob

  • Rank
    Forum Newbie
  1. Export charts in IE8 not working

    Oke, I have some more information, his IE 8 problem is only on intranet. On the internet there is not a problem. but in internet is IE6 en 7 the problem so a table what is working and what not. the internet is a SSL site browser | internet| intranet ------------------------------------- IE6 | works not | works IE7 | works not | works IE8 | works | works not FF | works | works but if I set the website in the trusted sites in IE7 the chart can export his content. this is a workaround. but I must have a solution for it. I am working on it but if anybody knows anything, can he post it please many thanks, thomas
  2. Export charts in IE8 not working

    Oke I know a little bit of the problem, I am using Prototype 1.6.1_rc2 is this version, I can't export the chart. when I use the prototype version 1.6.1_rc3, the export of the chart is working. only some other things are not working in this version, and everything is slower. so the rc3 is even nog a options for us. does anyone have a solution for this. greetz thomas
  3. Export charts in IE8 not working

    this is my ie8 source code and this is my ff3.5 source code
  4. Export charts in IE8 not working

    I have flash-player 10, but this is something in javascript. he can't find the right windows version in js some more information because I have debugged some javascript. the chartobject exportchart method is not supported. And I have found out, that the export options in the fusion chart are not listed with a right click in IE8, in FF i see them. this are my params for it "exportAtClient=0;exportEnabled=1;exportHandler={$handler};exportAction=download"
  5. I have a chart made in the php class of fusioncharts. now is the export not working, I do a javascript call for the export. now the wreird thing is, it's working in IE6, IE7 and FF. only not in IE8. this are the setting of javascript this are my settings of the chart who can help me. please
  6. I have looking for much solutions for server side export of the chart, so we can put it into a word document or something because we have over here the source code of the flash files, I have a look in the chart functions and came with this solution. in the actionscript document chart.as. is a function sendImageData when you replace this line l.send(this.params.imageSaveURL, "_self", "POST"); into fscommand("displayPost", l.data + "%,%"+l.width+"%,%"+l.height+"%,%"+l.bgcolor); in the html document in the head of the html document you should put this <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> for IE this must be in the document the %chartId% should contain the id of the chart <!--[if gte IE 5]> <script type="text/javascript" event="FSCommand(command,args)" for="%chartId%"> $chartId%_DoFSCommand(command, args); </script> <![endif]--> and make a function in javascript function %chartID%_DoFSCommand(command, args) { if (command == "displayPost") { var argArray = args.split('%,%'); document.getElementById("data").value = argArray[0]; document.getElementById("width").value = argArray[1]; document.getElementById("height").value = argArray[2]; document.getElementById("bgcolor").value = argArray[3]; document.getElementById('fusion').submit(); } } and make a form in the html document <form name="fusion" id="fusion" method="POST" action="FusionChartsSave.php"> <input type="hidden" name="data" id="data" value=""> <nput type="hidden" name="height" id="height" value=""> <input type="hidden" name="width" id="width" value=""> <input type="hidden" name="bgcolor" id="bgcolor" value=""> </form> in the fusionChart.js you should put this swliveconnect=true into the embed function the chartdata is now available in javascript and in php so I can put the image now in my word document I have made a new function so the save image is still available for the user but this is just a example how to do.