Skip to content

Instantly share code, notes, and snippets.

@davidkryzaniak
Created March 7, 2013 16:18
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 davidkryzaniak/5109218 to your computer and use it in GitHub Desktop.
Save davidkryzaniak/5109218 to your computer and use it in GitHub Desktop.
Articles Plugin for MODx
//inside both create.js and update.js
xtype: 'superboxselect'
,fieldLabel: _('articles.article_tags')
,description: _('articles.article_tags_help')
,name: 'tags'
,id: 'modx-resource-tags'
,anchor: '100%'
,store: [
['Tag 1','Tag 1'],
['Tag 2','Tag 2'],
['Tag 3','Tag 3']
]
,value: config.record.tags || ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment