Sanjukta

Cannot drilldown in IE

Recommended Posts

Hi,

 

 

 

I am building charts under PHP/MySql environment.

 

 

 

Following function is the one I am using for drilldown.

 

[p]

 

function updateCharts(year) {

 

//Update the checkboxes present on the same page.

 

var i;

 

//Iterate through all checkboxes and match the selected year

 

for (i=0; i

 

if(parseInt(document.frmYr.year.value,10)==year){

 

document.frmYr.year.checked = true;

 

}else{

 

document.frmYr.year.checked = false;

 

}

 

}

 

 

 

//NoCache="+Math.floor(Math.random())+"&

 

if (incidentLoaded) {

 

RN=Math.floor(Math.random()*9999999999);

 

var strURL = "../seracharts/Data_IncidentComparison.php?noCache="+RN+"&year=" + year;

 

strURL = escape(strURL);

 

var chartObj = getChartFromId("IncidentComparison");

 

 

 

chartObj.setDataURL(strURL);

 

}else{

 

alert("Please wait for the charts to load...");

 

return;

 

}

 

}

 

[/p]

 

What 'Data_IncidentComparison.php' does is simply generate XML file.

 

I just attached noCache parameter after the URL as suggested by other topic. But doesn't work for me.

 

 

 

I just started from the function given by FusionChart and working perfectly in all browsers except for IE.

 

Even in IE, if I open the page in localhost(http), it runs well. But once I upload to the public-site(https),

 

the error shows up 'Error in loading data.'

 

 

 

Any suggestion??

 

 

 

Cheers

 

 

 

Min

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now