1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| {
xtype: 'combo',
id:'unitField',
fieldLabel: 'Priorité',
editable: false,
allowBlank:false,
forceSelection : true,
value: ['500'],
store: new Ext.data.SimpleStore({
fields: ['value', 'option'],
data : [
['1000', 'Critique'],
['800', 'Urgente'],
['500', 'Normale'],
['1', 'Faible']
]
}),
displayField:'option',
valueField: 'value',
hiddenName : 'priority',
typeAhead: true,
mode: 'local',
triggerAction: 'all',
selectOnFocus:true,
blankText:"Veuillez saisir une priorité"
} |
Partager