Articles contenant le tag ExtJS

Don’t declare a variable called args in Ext.onReady function

Recently, I was trying the following: Ext.onReady(function() { var args = someMethod(), v = args.v; if (v) { … } … } Quite strangely, the v variable was always getting the undefined value. The reason is in fact very simple: Ext.onReady is using the createDelayed function. This method creates a function that will execute another […]

Pas de commentaire