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 27 28 29 30 31 32 33 34 35
| ...{
xtype: 'panel',
title: 'Sélection des groupes',
width:600,
bodyStyle: 'padding:10px;',
layout : 'absolute',
items:[{
xtype: 'itemselector',
name: 'itemselector',
fieldLabel: 'ItemSelector',
multiselects: [{
width: 250,
height: 200,
store: [['10','Ten']],
displayField: 'text',
valueField: 'value'
},{
width: 250,
height: 200,
store: [['10','Ten']],
tbar:[{
text: 'clear',
handler:function(){
Ext.Msg.alert('Clear', 'Clear');
}
}]
}]
}],
buttons: [{
text: 'Save',
handler: function(){
Ext.Msg.alert('Submitted Values', 'Submitted');
}
}]
} ... |
Partager