Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / HasManyAssociation.html
index 27d3b13..f1bc427 100644 (file)
@@ -3,8 +3,8 @@
 <head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>The source code</title>
-  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
-  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
   <style type="text/css">
     .highlight { display: block; background-color: #ddd; }
   </style>
@@ -52,7 +52,7 @@ Ext.define('User', {
  * 
 &lt;pre&gt;&lt;code&gt;
 //first, we load up a User with id of 1
-var user = Ext.ModelManager.create({id: 1, name: 'Ed'}, 'User');
+var user = Ext.create('User', {id: 1, name: 'Ed'});
 
 //the user.products function was created automatically by the association and returns a {@link Ext.data.Store Store}
 //the created store is automatically scoped to the set of Products for the User with id of 1
@@ -108,7 +108,7 @@ var store = new Search({query: 'Sencha Touch'}).tweets();
  * equivalent to this:&lt;/p&gt;
  * 
 &lt;pre&gt;&lt;code&gt;
-var store = new Ext.data.Store({
+var store = Ext.create('Ext.data.Store', {
     model: 'Tweet',
     filters: [
         {