Articles contenant le tag ExtJS
Don’t declare a variable called args in Ext.onReady function
Posté par Olivier dans Trucs & Astuces le 8 avril 2009
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 […]