smkkiran
9 Feb 2012, 9:50 AM
this.task = { run: additemsToTable,
interval: 10//10 ms
}
var runner = new Ext.util.TaskRunner();
runner.start(this.task);
in above code i want to fire a function at regular interval (10ms) it is working in all other browsers other than ie
In other browsers its firing the function as interval mentioned but in IE its taking too much time to fire that function. Even though its calling the function repeatedly but not in the interval i mentioned... total operations in other browsers raking less than 5 sec but in IE its more than a minute to complete this timer
can anyone help me on this... thanks in advance
interval: 10//10 ms
}
var runner = new Ext.util.TaskRunner();
runner.start(this.task);
in above code i want to fire a function at regular interval (10ms) it is working in all other browsers other than ie
In other browsers its firing the function as interval mentioned but in IE its taking too much time to fire that function. Even though its calling the function repeatedly but not in the interval i mentioned... total operations in other browsers raking less than 5 sec but in IE its more than a minute to complete this timer
can anyone help me on this... thanks in advance