XML tag name mismatch (expected br)
This was curious, and I couldn't figure out what the issue was. I googled and found very little help on the subject.
The solution? The problem was in my back-end server code. There was a null pointer exception in my Java code, which returned an HTML error page that is standard for our app. The Extjs processing was expecting JSON, and couldn't find it, obviously. Hence, the error.
If you are using Firebug (which you should be, everyone should be), you will be able to trace the error better by looking at the "Net" tab when you access your Extjs component that is throwing the error. After that, it was an easy fix.
1 comment:
you have just save me, I got same issue for last 3 hours ... I have just discovered NET ta, I think I should read firebug documentation
Post a Comment