Skip to content

Instantly share code, notes, and snippets.

@dsci
Created November 17, 2011 14:28
Show Gist options
  • Save dsci/1373257 to your computer and use it in GitHub Desktop.
Save dsci/1373257 to your computer and use it in GitHub Desktop.
panel.items.each (item,index,length) ->
count++ if item.getValue() is ''
panel.items.each(function(item,index,length){
if(item.getValue() === '')
count++;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment