我会这样写:
new Ext.grid.GridPanel({
...中间省略
tbar:[{text:'添加新任务',handler:function(){hello()},scope:this}]
})
function hello(){
alert("Hello,easyjf open source")
}
看完easyjf 那个PDF的例子后,还是得再找别人写的代码看看。实际应用估计不会照那个PDF上写的例子。
BS下easyjf 卖书的行为。
var form = new Ext.form.FormPanel({buttons : [ {
text : '登录',
handler : function() {
if (form.getForm().isValid()) {
form.getForm().submit({
url : 'UsersAction!login.action',
success : function(form, action) {
if (action.result.msg == 'yes') {
Ext.MessageBox.alert('温馨提示', '登录成功',function(){
window.location.href = 'index.jsp'
})
}else{
Ext.MessageBox.alert('温馨提示', '登录失败')
}
}
})
}else{
Ext.MessageBox.alert('温馨提示','您的输入有误')
}
}
}, {
text : '重置',
handler : function() {
Ext.getCmp('aa').getForm().reset()
}
} ]
})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)