cacheString: "_dc",
<span id='Ext-data-proxy-Server-cfg-timeout'> /**
-</span> * @cfg {Number} timeout (optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
+</span> * @cfg {Number} timeout (optional) The number of milliseconds to wait for a response.
+ * Defaults to 30000 milliseconds (30 seconds).
*/
timeout : 30000,
<span id='Ext-data-proxy-Server-cfg-api'> /**
</span> * @cfg {Object} api
- * Specific urls to call on CRUD action methods "read", "create", "update" and "destroy".
+ * Specific urls to call on CRUD action methods "create", "read", "update" and "destroy".
* Defaults to:<pre><code>
api: {
- read : undefined,
create : undefined,
+ read : undefined,
update : undefined,
destroy : undefined
}
* </code></pre>
- * <p>The url is built based upon the action being executed <tt>[load|create|save|destroy]</tt>
+ * <p>The url is built based upon the action being executed <tt>[create|read|update|destroy]</tt>
* using the commensurate <tt>{@link #api}</tt> property, or if undefined default to the
* configured {@link Ext.data.Store}.{@link Ext.data.proxy.Server#url url}.</p><br>
* <p>For example:</p>
* <pre><code>
api: {
- load : '/controller/load',
- create : '/controller/new',
- save : '/controller/update',
+ create : '/controller/new',
+ read : '/controller/load',
+ update : '/controller/update',
destroy : '/controller/destroy_action'
}
* </code></pre>