Re: " The data neccessary to complete this operation is not yet available."
Posted By:
Anonymous
Posted On:
Wednesday, July 4, 2007 05:05 AM
if u dont get sol yet plz try this..
when u populate the combo
may be u write alert or something
after xmlHttp.send(params);
and before checking ready state
first check the state of ur xmlhttp and then write whatever u want to write
u can check ready state with
xmlHttp.onreadystatechange=stateChanged;
where stateChanged is function..
function stateChanged()
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{
document.getElementById("alertdiv").innerHTML=xmlHttp.responseText
//here is ur operation
xmlHttp=null
}
}
i hope this will work
nisha
Re: " The data neccessary to complete this operation is not yet available."
Posted By:
Michael_Lowden
Posted On:
Monday, June 18, 2007 04:50 AM
any chance you are "using" something before it's been "declared" ??? this can cause weird things to happen on slower machines before data/files have been cached the first time.