0

我是煎茶触摸的新手。请在下面输入我的代码

Ext.define('blackbutton.view.Login.Login', {
extend: 'Ext.Panel',
xtype: 'loginview',
id:'loginview',
requires: [    
  'Ext.field.Password',
  'blackbutton.store.Login.LoginLS'
],

config: {
    cls: 'core',
    scrollable: {direction: 'vertical', directionLock: true},
     html      : '<input type="text" name="firstname"> '+
                '<input type="button" name="btnLogin" class="css" id="btnLogin" value="someValue" onclick="return false" >'+
                '<input type="button" name="btnlogout" class="css" id="btnLogout" value="someValue" onclick="return false" >'





}




//       
//       initialize: function() {
//          ns = this;
//
//
//          this.callParent(arguments);
//      }



});

是否可以使用监听器触发 btnlogin 和 btnlogout 事件?如果可能的话,请指导我一些示例代码。谢谢

4

1 回答 1

0

我不确定你在尝试什么,但这看起来不是一个好习惯。但是,下面的代码有效(至少在 chrome 上)

html: '<input type="button" name="btnLogin" class="css" id="btnLogin" value="someValue" onclick="console.log(\'button click\')" >',
listeners: {
    painted: function() {
        Ext.select('#btnLogin').elements[0].click();
    }
} 

希望能帮助到你-

于 2013-09-05T21:03:22.290 回答