0
Ext.application({
name: 'Fiddle',
launch: function() {
Ext.create({
xtype: 'form',
layout: {
type: 'hbox',
pack: 'center',
},
renderTo: Ext.getBody(),
width: 800,
items: [{
xtype: 'button',
margin: '10 10 10 10',
text: 'today',
ui:'default-toolbar',
handler: function() {
Ext.getCmp("new").show();
Ext.getCmp("test").hide();
}
}, {
xtype: 'button',
margin: '10 0 10 10',
ui:'default-toolbar',
text: 'last 7days',
handler: function() {
Ext.getCmp("test").show();
Ext.getCmp("new").hide();
}
},
{
xtype: 'panel',
margin: '10 20 10 20',
id: 'new',
html: 'you have selcted today button',
hidden: true
},
{
xtype: 'panel',
margin: '10 20 10 20',
id: 'test',
html: 'you have selcted last 7days button',
hidden: true
}]
});
}
});
你可以提前提供任何小提琴示例 – anka