Skip to content

Instantly share code, notes, and snippets.

@dudelis
Last active March 25, 2018 18:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dudelis/ff1c141c34d0df077b3f360e1b6dbb1c to your computer and use it in GitHub Desktop.
Save dudelis/ff1c141c34d0df077b3f360e1b6dbb1c to your computer and use it in GitHub Desktop.
K2: How to make the whole header view clickable (expand/collapse)
var headerClick = function(self) {
if(self){
$(self.currentTarget).find('a').click();
}
};
$('.grid-header').click(headerClick);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment