found my own answer, if you return false, it will not perform the next iteration of the loop.
Ext.each(arrayObj, function(obj){ if(obj.isSomethingTrue()){ doSomething(); return false; /*this will prevent each from looking at the next obj in the arrayObj*/ } });
frosty
source share