1

It seems that dajax is hi-jacking the ajax requests from django-debug-toolbar

enter image description here

enter image description here

Is there anyway to work around this or a known solution?

cph
  • 458
  • 2
  • 6
  • 24
  • Were you ever able to figure this out? I'm having the same problem, going to dive into it myself. – Joseph Apr 20 '15 at 22:31
  • Nope. Dug a little into the code but just couldn't justify investing the time to get it up. – cph Apr 20 '15 at 22:33

1 Answers1

2

To fix this issue, set DAJAXICE_XMLHTTPREQUEST_JS_IMPORT = False in your Django project settings.

By default, Dajaxice includes the XmlHttpRequest.js library:

If you disable the inclusion of this third party javascript library, the Django Debug Toolbar can load panels properly. I have not noticed any issues with Dajaxice with the XmlHttpRequest.js library excluded- I believe it is only for compatibility with old IE browsers, though I'm not certain.

Joseph
  • 12,678
  • 19
  • 76
  • 115