X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Server.html diff --git a/docs/source/Server.html b/docs/source/Server.html index 1c4a3ca3..750513ea 100644 --- a/docs/source/Server.html +++ b/docs/source/Server.html @@ -107,30 +107,31 @@ Ext.define('Ext.data.proxy.Server', { cacheString: "_dc", /** - * @cfg {Number} timeout (optional) The number of milliseconds to wait for a response. Defaults to 30 seconds. + * @cfg {Number} timeout (optional) The number of milliseconds to wait for a response. + * Defaults to 30000 milliseconds (30 seconds). */ timeout : 30000, /** * @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>