A tip for debugging with Atlas
This code shows you what you can call on your serialized object when using Atlas:
for(m in myObject){ //in my case, I was using result.getItem(i)
alert(m);
}
Thanks to
Wilco Bauwer for showing it to me in the asp.net forums.