在sencha touch selectfiled中获取警报消息(hi)

时间:2013-07-17 05:12:13

标签: sencha-touch-2

我正在使用sencha touch select field。一切正常。但每当我尝试更改选择字段的值时,它会显示警告消息“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
        }
      }]
        }]
      });
    }
  });

1 个答案:

答案 0 :(得分:0)

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

我对此进行了评论,现在工作正常。

感谢。