0

我正在使用 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
        }
      }]
        }]
      });
    }
  });
4

1 回答 1

0

我明白了。它来自 sencha-touch-all.js ,getScrollables 函数。有警报(“嗨”);.

我评论了它,现在它工作正常。

谢谢。

于 2013-07-17T05:43:08.300 回答