shinezee

Members
  • Content count

    11
  • Joined

  • Last visited

Posts posted by shinezee


  1. i just came across the same chart reloading problem in Firefox.

     

     

     

    I have some code structure like this:

     

     

     

    div id="tab's content" style="display:block/none" [b]//at this level i show/hide the tab's content[/b]
    
       div class=""container of fusionchart"
    
           div id="WorldWideTab1MainChart" align="center">Place to be placed by the chart
    
           script language="JavaScript">
    
                 var chart1 = new FusionCharts("./FusionCharts/MSColumnLine3D.swf", "WorldWideTab1MainChartId", "95%", "370", "0", "1");
    
                 chart1.addParam("WMode", "Transparent");
    
                 chart1.render("WorldWideTab1MainChart");
    
            /script
    
       /div
    
    /div

     

     

     

    au u can see i use tabs here, so i need to show/hide the tab's content when shiftting between tabs. and in Firefox, the flash chart is automatically reloaded when the tab's content is shown. In this case, as i use setDataXml method, the chart have no data to display.

     

     

     

    is there any way to disable this automatically reload in Firefox?????

     

     

     

    thx a lot for any response.


  2. hello, im using the FusionChart with Spring MVC, all works good for now, but i encountered a problem.

     

     

     

    i have a search box in the web which provides a date from/to search fonctionality, the from/to dates wille be obtained by Spring mvc and it will go search in a mysql database, the search result will be encapsulated in xml format that fits the FusionChart require and sent to the page.

     

     

     

    there is the problem, what should i do to only refresh the chart rather than refresh the whole page??? what is your strategy??

     

     

     

    thank you.