Skip to content

Instantly share code, notes, and snippets.

@edspencer
Created May 22, 2009 12:13
Show Gist options
  • Save edspencer/116085 to your computer and use it in GitHub Desktop.
Save edspencer/116085 to your computer and use it in GitHub Desktop.
filterPanelConfig: {
filters: [
{
title: 'Tags',
iconCls: 'tag',
store: this.albumStore,
convert: function(item) {
return item.get('tag_list').split(',');
}
},
{
title: 'Authors',
iconCls: 'author',
store: this.albumStore,
convert: function(item) {
return item.get('author_membership_id');
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment