X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Direct.html diff --git a/docs/source/Direct.html b/docs/source/Direct.html index d51f71eb..970c570f 100644 --- a/docs/source/Direct.html +++ b/docs/source/Direct.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.data.proxy.Direct
  * @extends Ext.data.proxy.Server
  * 
@@ -12,7 +29,7 @@
  * method for all requests. Alternatively, you can provide an {@link #api} configuration. This
  * allows you to specify a different remoting method for each CRUD action.
  * 
- * ## Paramaters
+ * ## Parameters
  * This proxy provides options to help configure which parameters will be sent to the server.
  * By specifying the {@link #paramsAsHash} option, it will send an object literal containing each
  * of the passed parameters. The {@link #paramOrder} option can be used to specify the order in which
@@ -43,7 +60,7 @@ Ext.define('Ext.data.proxy.Direct', {
     
     /* End Definitions */
    
-   /**
+   /**
      * @cfg {Array/String} paramOrder Defaults to <tt>undefined</tt>. A list of params to be executed
      * server side.  Specify the params in the order in which they must be executed on the server-side
      * as either (1) an Array of String values, or (2) a String of params delimited by either whitespace,
@@ -57,26 +74,26 @@ paramOrder: 'param1|param2|param'
      */
     paramOrder: undefined,
 
-    /**
+    /**
      * @cfg {Boolean} paramsAsHash
      * Send parameters as a collection of named arguments (defaults to <tt>true</tt>). Providing a
      * <tt>{@link #paramOrder}</tt> nullifies this configuration.
      */
     paramsAsHash: true,
 
-    /**
+    /**
      * @cfg {Function} directFn
      * Function to call when executing a request.  directFn is a simple alternative to defining the api configuration-parameter
      * for Store's which will not implement a full CRUD api.
      */
     directFn : undefined,
     
-    /**
+    /**
      * @cfg {Object} api The same as {@link Ext.data.proxy.Server#api}, however instead of providing urls, you should provide a direct
      * function call.
      */
     
-    /**
+    /**
      * @cfg {Object} extraParams Extra parameters that will be included on every read request. Individual requests with params
      * of the same name will override these params when they are in conflict.
      */
@@ -176,4 +193,6 @@ paramOrder: 'param1|param2|param'
         return '';
     }
 });
-
\ No newline at end of file +
+ +