Hi,
I’m trying to load a dhtmlxCombo with data using dhtmlxConnector, on IE8, and gives me the following error: “Error type: LoadXML. Description: Incorrect XML”. This works fine on Firefox, but it doesn’t work on IE8.
This is my client side code:
//......
<div id="combo"></div>
//......
var combo = new dhtmlXCombo("combo", "combo", 300);
combo.loadXML("dhtmlxConnector.php?connectionType=" +connectionType);
combo.attachEvent("onChange", onChangeCentres);
//.......
And the server side code:
require ("codebase/dhtmlxConnector/combo_connector.php");
require ("codebase/dhtmlxConnector/db_mssql.php");
//.....
$comboConn = new ComboConnector($res, "MsSQL");
$comboConn->enable_log("C:/Temp/log_combo.txt");
$comboConn->dynamic_loading(10000);
$comboConn->render_table("NV_CENTRES_DHTMLX", "IDCENTRE", "CENTRE", "", "");
//......
Could you give me an answer as soon as posible?
Thanks.