我在EXT的tbar的handler方法怎么提交不了?
tbar:[{text:'增加',iconCls:'silk-add',handler:function(btn,ev){Ext.Ajax.request({method...
tbar:[ {
text : '增加',
iconCls : 'silk-add',
handler : function(btn,ev){
Ext.Ajax.request({
method : 'post',
url : 'find_emps_by_putValue.action',
params :{'putValue' : putValue},
store:store
})
}
] 展开
text : '增加',
iconCls : 'silk-add',
handler : function(btn,ev){
Ext.Ajax.request({
method : 'post',
url : 'find_emps_by_putValue.action',
params :{'putValue' : putValue},
store:store
})
}
] 展开
4个回答
展开全部
Ext.Ajax.request(
{
url : basePath + "contract/App!toEdit.action",
params :
{
"id" : id
},
success : function(action, options)
{
addForm.getForm().setValues(Ext.decode(action.responseText));
Ext.getBody().unmask();
}
});
如果加了sussess还不行, 就把 handler : function(btn,ev) 括号中的参数去掉试试
{
url : basePath + "contract/App!toEdit.action",
params :
{
"id" : id
},
success : function(action, options)
{
addForm.getForm().setValues(Ext.decode(action.responseText));
Ext.getBody().unmask();
}
});
如果加了sussess还不行, 就把 handler : function(btn,ev) 括号中的参数去掉试试
展开全部
没有回调方法...
Ext.Ajax.request({
method : 'post',
url : 'find_emps_by_putValue.action',
params :{'putValue' : putValue},
store:store,
success:function(r){
store.loadDate(Ext.util.JSON.decode(r.responseText);)
}
})
Ext.Ajax.request({
method : 'post',
url : 'find_emps_by_putValue.action',
params :{'putValue' : putValue},
store:store,
success:function(r){
store.loadDate(Ext.util.JSON.decode(r.responseText);)
}
})
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
tbar:[ {
text : '增加',
iconCls : 'silk-add',
handler : this.add_onclick,
scope : this
}
]
add_onclick : function(btn)// 或者function add_onclick()
{
Ext.Ajax.request
({
method : 'post',
url : 'find_emps_by_putValue.action',
params :{'putValue' : putValue},
store:store,
scope : this
})
}
text : '增加',
iconCls : 'silk-add',
handler : this.add_onclick,
scope : this
}
]
add_onclick : function(btn)// 或者function add_onclick()
{
Ext.Ajax.request
({
method : 'post',
url : 'find_emps_by_putValue.action',
params :{'putValue' : putValue},
store:store,
scope : this
})
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这个tbar少了一个“}”吧,没报错?我加上这个“}”能提交到后台
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询