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
| var myPanel= Ext.create('Ext.grid.Panel', {id:'test',store: testStore, collapsible:true,hidden: true,title:listRequestUPRegist,
columns: [{xtype: 'checkcolumn', hidden: true,header: 'test',dataIndex: 'checked', width:
60,listeners:{'checkchange': RequestGridSelectionChanged}}
],
columnLines: true,
anchor: '100%',
frame: true,
height: 250,
//margin: '5 5 5 5',
dockedItems: [{
xtype: 'toolbar',
dock: 'bottom',
ui: 'footer',
layout: {
pack: 'center'
},
items: [
{
xtype: 'button',
text: consultation,
}
]
}]
}); |
Partager