我正在使用 sencha 触摸选择字段。一切正常。但每当我尝试更改选择字段的值时,它都会显示警报消息“hi”。如何避免这些消息。我是 sencha 的新手,想不通。有什么帮助吗??
这是我的代码:
Ext.setup({
onReady: function() {
var loginPage = new Ext.form.Panel({
fullscreen:true,
id:'loginPage',
items : [
{
xtype : 'image',
src:'images/lock.gif',
style: 'width:40px;height:40px;margin:auto'
},
{
xtype:'fieldset',
items: [
{
xtype : 'selectfield',
label : 'username',
id: 'uTextField',
name: 'uTextField',
required: true,
options : [
{ text : 'aaa', value : 'aaa' },
{ text : 'bbb', value : 'bbb' },
{ text : 'ccc', value : 'ccc' }]
},
{
xtype: 'selectfield',
label : 'userId',
id: 'uidTextField',
name: 'uidTextField',
required: true,
options : [
{ text : '1', value : '1' },
{ text : '2', value : '2' },
{ text : '3', value : '3' }]
},
{
xtype: 'button',
itemId: 'logInButton',
ui: 'action',
padding: '10px',
text: 'Submit',
handler : function(){
//function goes here
}
}]
}]
});
}
});