1.) 我需要添加 2 个按钮,一个在另一个下方。我到目前为止的工作如下所示;它只显示一个按钮,但如何在此按钮下方添加另一个按钮图像不同的按钮?
2.) 当用户点击一个按钮时,我需要导航到另一个屏幕。我怎样才能做到这一点 ?我需要相当于下面的objective-c代码吗?
View1 *view1 = [[View1 alloc] initWithNibName:@"View1" bundle:nil];
[self.navigationController pushViewController:View1 animated:YES];
3.)如何添加导航栏(相当于iPhone中显示的导航栏)
第一个问题的代码;
{
items:[
{
xtype:'button',
text: 'Submit',
ui:'confirm',
handler: function(){
var values = Ext.getCmp('contactForm').getValues();
Ext.Ajax.request({
url: 'http://loonghd.com/service/',
failure: function (response) {
//do something
}, success: function (response) {
// do something
}
});
}
}
]
}