X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/PollingProvider.html diff --git a/docs/source/PollingProvider.html b/docs/source/PollingProvider.html index a6655582..0c2ee063 100644 --- a/docs/source/PollingProvider.html +++ b/docs/source/PollingProvider.html @@ -1,4 +1,21 @@ -
/**
+
+
+
+
+ The source code
+
+
+
+
+
+
+ /**
* @class Ext.direct.PollingProvider
* @extends Ext.direct.JsonProvider
*
@@ -43,19 +60,19 @@ Ext.define('Ext.direct.PollingProvider', {
/* End Definitions */
- /**
+ /**
* @cfg {Number} interval
* How often to poll the server-side in milliseconds (defaults to <tt>3000</tt> - every
* 3 seconds).
*/
interval: 3000,
- /**
+ /**
* @cfg {Object} baseParams An object containing properties which are to be sent as parameters
* on every polling request
*/
- /**
+ /**
* @cfg {String/Function} url
* The url which the PollingProvider should contact with each request. This can also be
* an imported Ext.Direct method which will accept the baseParams as its only argument.
@@ -65,14 +82,14 @@ Ext.define('Ext.direct.PollingProvider', {
constructor : function(config){
this.callParent(arguments);
this.addEvents(
- /**
+ /**
* @event beforepoll
* Fired immediately before a poll takes place, an event handler can return false
* in order to cancel the poll.
* @param {Ext.direct.PollingProvider}
*/
'beforepoll',
- /**
+ /**
* @event poll
* This event has not yet been implemented.
* @param {Ext.direct.PollingProvider}
@@ -86,7 +103,7 @@ Ext.define('Ext.direct.PollingProvider', {
return !!this.pollTask;
},
- /**
+ /**
* Connect to the server-side and begin the polling process. To handle each
* response subscribe to the data event.
*/
@@ -120,7 +137,7 @@ Ext.define('Ext.direct.PollingProvider', {
}
},
- /**
+ /**
* Disconnect from the server-side and stop the polling process. The disconnect
* event will be fired on a successful disconnect.
*/
@@ -155,4 +172,6 @@ Ext.define('Ext.direct.PollingProvider', {
}));
}
}
-});
\ No newline at end of file
+});
+
+