我是煎茶触摸的新手。请在下面输入我的代码
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 事件?如果可能的话,请指导我一些示例代码。谢谢