Class: Ext.TaskMgr
See the {@link #start} method for details about how to configure a task object.
Extends
Ext.util.TaskRunner
A static {@link Ext.util.TaskRunner} instance that can be used to start and stop arbitrary tasks. See
{@link Ext.util.TaskRunner} for supported methods and task config properties.
// Start a simple clock task that updates a div once per second
var task = {
run: function(){
Ext.fly('clock').update(new Date().format('g:i:s A'));
},
interval: 1000 //1 second
}
Ext.TaskMgr.start(task);
Ext.TaskMgr
Defined in: aloha.js.
Documentation generated by JsDoc Toolkit 2.4.0 on Wed Nov 30 2011 13:33:45 GMT+0100 (CET)