Mitul Verma
Mitul Verma

Reputation: 237

How to implement SetTimeOut function in Sencha Touch

I want to show a banner for 5 second and then hide it using setTimeout() in Sencha Touch

Upvotes: 0

Views: 2175

Answers (1)

Mitul Verma
Mitul Verma

Reputation: 237

Ext.Function.defer(function () {
    alert('Anonymous');
}, 5000);

Upvotes: 1

Related Questions