mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
Try to use xmlDoc.responseText as xmlDoc.response might not be available in IE
This commit is contained in:
parent
8f0dba15fe
commit
ef9409294c
@ -193,7 +193,9 @@ var et2_tree = et2_inputWidget.extend(
|
||||
widget.setImages.apply(widget, widget.options.std_images.split(','));
|
||||
}
|
||||
// Add in the callback so we can keep the two in sync
|
||||
widget.input.AJAX_callback = function() { widget._dhtmlxtree_json_callback(JSON.parse(this.response), widget.input.lastLoadedXMLId);};
|
||||
widget.input.AJAX_callback = function(dxmlObject) {
|
||||
widget._dhtmlxtree_json_callback(JSON.parse(dxmlObject.xmlDoc.responseText), widget.input.lastLoadedXMLId);
|
||||
};
|
||||
|
||||
if (widget.options.autoloading)
|
||||
{
|
||||
@ -538,7 +540,7 @@ var et2_tree = et2_inputWidget.extend(
|
||||
else
|
||||
{
|
||||
this.input.loadJSON(this.egw().link(this.autoloading_url, {id: _id}),
|
||||
function() { self._dhtmlxtree_json_callback(JSON.parse(this.response), _id);}
|
||||
function(dxmlObject) {self._dhtmlxtree_json_callback(JSON.parse(dxmlObject.xmlDoc.responseText), _id);}
|
||||
);
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user