Skip to content

Instantly share code, notes, and snippets.

@dustingetz
Created December 14, 2010 16:55
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 dustingetz/740693 to your computer and use it in GitHub Desktop.
Save dustingetz/740693 to your computer and use it in GitHub Desktop.
this.tbar = new Ext.Toolbar({
//height:70,
boxMinHeight:100,
items:[
{text:'Functional View'}
,'->'
,{
xtype:'superboxselect',
width:275,
displayField:'description',
valueField: 'description',
emptyText: 'All studies',
mode:'local',
store:'studyStore'
},{
xtype:'superboxselect',
width:275,
displayField:'description',
valueField: 'description',
emptyText: 'All countries',
mode:'local',
store:'countryStore'
},{
xtype:'superboxselect',
width:275,
displayField:'description',
valueField: 'description',
emptyText: 'All sites',
mode:'local',
store:'siteStore'
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment