Created
November 10, 2010 19:45
-
-
Save veriojon/671387 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imata.log(a.result) | |
Imata.log(a.result.allerror) | |
for (r in a.result.allerror) { | |
if (!Ext.isFunction(r)) { | |
Imata.log('r:' + r); | |
for (e in a.result.allerror[r]) { | |
if (!Ext.isFunction(e)) { | |
Imata.log('e:' + e); | |
Imata.log('msg:' + a.result.allerror[r][e].msg); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment