Welcome Guest Search | Active Topics | Sign In | Register

Callback Options
EPC DB
Posted: Thursday, April 21, 2011 10:40:51 AM
Rank: Member
Groups: Member

Joined: 3/4/2008
Posts: 24
Hi,

I have multiple callback panel in a form.
I send a callback manually by the javascript function

function refreshSparesList() {
var parameter = "";
parameter = document.getElementById("L_IdPartFilter").innerText + "[[";
var nodeSelected = eo_GetObject("TreeView1").getSelectedNode();
if (nodeSelected != null) {
parameter = parameter + nodeSelected.getValue();
}
parameter = parameter + "[[";
parameter = parameter + document.getElementById("CB_WithSubFamillies").checked + "[[";
parameter = parameter + document.getElementById("TB_Designation").value + "[[";
parameter = parameter + document.getElementById("H_Filter").value + "[[";
parameter = parameter + document.getElementById("CB_WhithoutTool").checked + "[[";
parameter = parameter + document.getElementById("CB_PartWithQty").checked + "[[";
//alert (parameter);
eo_Callback("cbSparesList", parameter);
}

With Chrome and Firefox all works but not with internet explorer 8 or 9, I got the error message:
EO.web control 'cbSparesList' error message: The callback on cbSparesList has failed because the server did not recognize this callback .......

Some others refresh by callback works in this form even with internet explorer.


Do you know what's append?

Thanks.
eo_support
Posted: Thursday, April 21, 2011 10:47:32 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

We can not think of anything that can cause that. We will need you to post a full repro page that demonstrates the problem. Once we have the page we will try to run it here and see what we can find.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.