Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / guides / data / examples / associations_validations / data / users / 1 / index.html
diff --git a/docs/guides/data/examples/associations_validations/data/users/1/index.html b/docs/guides/data/examples/associations_validations/data/users/1/index.html
new file mode 100644 (file)
index 0000000..2763bed
--- /dev/null
@@ -0,0 +1,25 @@
+{
+    success: true,
+    users: [
+        {
+            id: 1,
+            name: 'Ed',
+            age: 25,
+            gender: 'male',
+            posts: [
+                {
+                    id   : 12,
+                    title: 'All about data in Ext JS 4',
+                    body : 'One areas that has seen the most improvement...',
+                    comments: [
+                        {
+                            id: 123,
+                            name: 'S Jobs',
+                            message: 'One more thing'
+                        }
+                    ]
+                }
+            ]
+        }
+    ]
+}
\ No newline at end of file