нашел мой собственный ответ, если вы вернете false, он не будет делать следующую итерацию в цикле.
Ext.each(arrayObj, function(obj){
if(obj.isSomethingTrue()){
doSomething();
return false; /*this will prevent each from looking at
the next obj in the arrayObj*/
}
});