tags:

views:

922

answers:

1
Ext.each(boundsExtend, function(value)
{
 if(value != record.ID) break;
});

So how do I break or continue Ext.each loop?

+2  A: 

From the docs:

If the supplied function returns false, iteration stops and this method returns the current index.

bmoeskau