Skip to content

Instantly share code, notes, and snippets.

@novalagung
Created November 5, 2012 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save novalagung/4016373 to your computer and use it in GitHub Desktop.
Save novalagung/4016373 to your computer and use it in GitHub Desktop.
listeners: {
click: function() {
if (filterCount != 1) {
$('#cbFilterCondition').click();
filterCount = 1;
} else {
$('#cbFilterCondition').blur();
filterCount = 0;
}
}
}
focus: function() { filterCount = (filterCount != 1) ? 1 : 0; }
width: 130,
cls:'cb-size-130',
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment