Ext.define('treps.view.FileFormats.FileFormatsCombo', {
extend: 'Ext.form.field.ComboBox',
alias: 'widget.fileformats_combo',
fieldLabel: 'File format',
editable:false,
valueField: 'id',
queryMode: 'local',
allowBlank: false,
tpl: Ext.create('Ext.XTemplate',
'',
'{fullname}
',
''
),
displayTpl: Ext.create('Ext.XTemplate',
'',
'',
'{fullname}',
'',
'',
'',
''
)
});