X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/JsonP.html diff --git a/docs/source/JsonP.html b/docs/source/JsonP.html index 3423c4d5..438203b8 100644 --- a/docs/source/JsonP.html +++ b/docs/source/JsonP.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.data.JsonP
  * @singleton
  * This class is used to create JSONP requests. JSONP is a mechanism that allows for making
@@ -18,7 +35,7 @@ Ext.define('Ext.data.JsonP', {
     
     /* End Definitions */
     
-    /**
+    /**
      * @property timeout
      * @type Number
      * A default timeout for any JsonP requests. If the request has not completed in this time the
@@ -26,21 +43,21 @@ Ext.define('Ext.data.JsonP', {
      */
     timeout: 30000,
     
-    /**
+    /**
      * @property disableCaching
      * @type Boolean
      * True to add a unique cache-buster param to requests. Defaults to <tt>true</tt>.
      */
     disableCaching: true,
    
-    /**
+    /**
      * @property disableCachingParam 
      * @type String
      * Change the parameter which is sent went disabling caching through a cache buster. Defaults to <tt>'_dc'</tt>.
      */
     disableCachingParam: '_dc',
    
-    /**
+    /**
      * @property callbackKey
      * @type String
      * Specifies the GET parameter that will be sent to the server containing the function name to be executed when
@@ -49,7 +66,7 @@ Ext.define('Ext.data.JsonP', {
      */
     callbackKey: 'callback',
    
-    /**
+    /**
      * Makes a JSONP request.
      * @param {Object} options An object which may contain the following properties. Note that options will
      * take priority over any defaults that are specified in the class.
@@ -120,7 +137,7 @@ Ext.define('Ext.data.JsonP', {
         return request;
     },
     
-    /**
+    /**
      * Abort a request. If the request parameter is not specified all open requests will
      * be aborted.
      * @param {Object/String} request (Optional) The request to abort
@@ -143,7 +160,7 @@ Ext.define('Ext.data.JsonP', {
         }
     },
     
-    /**
+    /**
      * Sets up error handling for the script
      * @private
      * @param {Object} request The request
@@ -152,7 +169,7 @@ Ext.define('Ext.data.JsonP', {
         request.script.onerror = Ext.bind(this.handleError, this, [request]);
     },
     
-    /**
+    /**
      * Handles any aborts when loading the script
      * @private
      * @param {Object} request The request
@@ -162,7 +179,7 @@ Ext.define('Ext.data.JsonP', {
         this.handleResponse(null, request);
     },
     
-    /**
+    /**
      * Handles any script errors when loading the script
      * @private
      * @param {Object} request The request
@@ -172,7 +189,7 @@ Ext.define('Ext.data.JsonP', {
         this.handleResponse(null, request);
     },
  
-    /**
+    /**
      * Cleans up anu script handling errors
      * @private
      * @param {Object} request The request
@@ -181,7 +198,7 @@ Ext.define('Ext.data.JsonP', {
         request.script.onerror = null;
     },
  
-    /**
+    /**
      * Handle any script timeouts
      * @private
      * @param {Object} request The request
@@ -191,7 +208,7 @@ Ext.define('Ext.data.JsonP', {
         this.handleResponse(null, request);
     },
  
-    /**
+    /**
      * Handle a successful response
      * @private
      * @param {Object} result The result from the request
@@ -218,7 +235,7 @@ Ext.define('Ext.data.JsonP', {
         Ext.callback(request.callback, request.scope, [success, result, request.errorType]);
     },
     
-    /**
+    /**
      * Create the script tag
      * @private
      * @param {String} url The url of the request
@@ -232,4 +249,6 @@ Ext.define('Ext.data.JsonP', {
         return script;
     }
 });
-
\ No newline at end of file +
+ +