extjs:使用FormPanel提交功能时打开一个新窗口
嘿呀, 我正在创建一个表单面板:
inputForm = new Ext.FormPanel({
id:'inputForm',
frame: true,
closable:true,
collapsible:true,
renderTo:'somewhere',
layout:'anchor',
standardSubmit:true,
method: 'post',
items:[{ ... }]
)};
并使用此提交按钮:
text:'run',
id: 'runButton',
handler:function(){
Ext.getCmp('inputForm').getForm().submit();
}
如何在新窗口/选项卡中打开提交页面???
Heya,
i'm creating a Formpanel:
inputForm = new Ext.FormPanel({
id:'inputForm',
frame: true,
closable:true,
collapsible:true,
renderTo:'somewhere',
layout:'anchor',
standardSubmit:true,
method: 'post',
items:[{ ... }]
)};
and use this submit button:
text:'run',
id: 'runButton',
handler:function(){
Ext.getCmp('inputForm').getForm().submit();
}
how can i open the submit page in a new window/tab ????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查此sencha 论坛链接
相关代码片段:
Check this sencha forum link
The relevant code snippet:
你解决你的问题了吗,..因为我看到你的问题是两天前的..
这就是我定义表单的方式:
和我的按钮,
have you fix your problem,.. because I see your question was 2 days ago..
this is how i define the form :
and my button,