Sencha Touch 2 でポップアップウィンドウにボタンを実装しようとしています。ボタンはどのように機能しますか? 1 つのボタンでウィンドウを閉じ、別のボタンで doSomething 関数を呼び出したいと思います。
function foo(){
Ext.Viewport.add({
xtype: 'panel',
scrollable: true,
centered: true,
width: 400,
height: 300,
items:[
{
docked: 'bottom',
xtype: 'titlebar',
items:[
{
xtype: 'button',
ui: 'normal',
text: 'Do Something',
go: 'testsecond'
},
{
xtype: 'button',
ui: 'normal',
text: 'Close',
go: 'testsecond',
},
]
},
]
});//Ext.Viewport.add
}
function doSomething() {
console.log('hi');
}