ext表单提交问题
<scriptlanguage="javascript">Ext.onReady(function(){Ext.MyWindow=Ext.extend(Ext.Windo...
<script language="javascript">
Ext.onReady(function () {
Ext.MyWindow = Ext.extend(Ext.Window, {
xtype: "window",
title: "我的窗口",
width: 429,
height: 271,
initComponent: function () {
this.items = [
{
xtype: "form",
title: "",
labelWidth: 100,
labelAlign: "left",
layout: "form",
height: 207,
collapsible: true,
items: [
{
xtype: "textfield",
fieldLabel: "标签",
anchor: "100%"
},
{
xtype: "button",
text: "我的按钮",
handler: function () {
this.getForm().submit({
waitMsg: '正在提交数据',
waitTitle: '提示',
url: '/services/AddType.ashx',
method: 'GET',
success: function (form, action) {
Ext.Msg.alert('提示', '保存成功');
},
failure: function (form, action) {
Ext.Msg.alert('提示', '原因如下:' + action.result.errors.info);
}
});
Ext.Msg.alert('提示', '保存成功');
}
}
]
}
]
Ext.MyWindow.superclass.initComponent.call(this);
}
}); var e = new Ext.MyWindow({}); e.show();
});
</script>
在窗体里面有一个form表单,表单中有一个文本框 和 按钮 在按钮的handler 里面如何提交表单啊 我用上述handler 中的this.getForm().submit 怎么不行了
xtype: "button",
text: "我的按钮",
handler: function () {
new
Ext.Msg.alert('提示', '保存成功');}
方框中 提示 错误 展开
Ext.onReady(function () {
Ext.MyWindow = Ext.extend(Ext.Window, {
xtype: "window",
title: "我的窗口",
width: 429,
height: 271,
initComponent: function () {
this.items = [
{
xtype: "form",
title: "",
labelWidth: 100,
labelAlign: "left",
layout: "form",
height: 207,
collapsible: true,
items: [
{
xtype: "textfield",
fieldLabel: "标签",
anchor: "100%"
},
{
xtype: "button",
text: "我的按钮",
handler: function () {
this.getForm().submit({
waitMsg: '正在提交数据',
waitTitle: '提示',
url: '/services/AddType.ashx',
method: 'GET',
success: function (form, action) {
Ext.Msg.alert('提示', '保存成功');
},
failure: function (form, action) {
Ext.Msg.alert('提示', '原因如下:' + action.result.errors.info);
}
});
Ext.Msg.alert('提示', '保存成功');
}
}
]
}
]
Ext.MyWindow.superclass.initComponent.call(this);
}
}); var e = new Ext.MyWindow({}); e.show();
});
</script>
在窗体里面有一个form表单,表单中有一个文本框 和 按钮 在按钮的handler 里面如何提交表单啊 我用上述handler 中的this.getForm().submit 怎么不行了
xtype: "button",
text: "我的按钮",
handler: function () {
new
Ext.Msg.alert('提示', '保存成功');}
方框中 提示 错误 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询