我有以下代码:
Ext.BLANK_IMAGE_URL = './ext/resources/images/default/s.gif';
Ext.onReady(function(){
Ext.QuickTips.init();
var addQuestionForm = new Ext.form.FormPanel({
frame :true,
method : 'POST',
items: [
{
xtype :'htmleditor',
width : "99%",
height : 200,
fieldLabel :'Question',
name :'question[text]',
}],
buttonAlign: 'center',
buttons: [
{
text : 'Submit',
height : 30,
icon : '/images/icons/silk/accept.png',
scale : 'large',
width : 500,
handler : function(){
if(addQuestionForm.getForm().isValid()){
addQuestionForm.getForm().submit({
// url:'/answers/create',
// waitMsg: 'Please wait...',
success : function(form, action) {
Ext.MessageBox.alert('Success!', 'Good job!');
// surveyWindow.close();
var redirect = '/admin/private_zone';
window.location = redirect;
},
failure: function(form, action){
Ext.MessageBox.alert('Failure!', action.result.msg);
}
});
}
}
}, {
text:'Cancel',
handler: function(){
var redirect = '/admin/private_zone';
window.location = redirect;
}
}]
});
var addQuestionWindow = new Ext.Window({
title : 'Add Question',
layout : 'form',
id : 'id-form',
width : 800,
height : 800,
modal : true,
closable : false,
resizable : false,
draggable : false,
autowidth : true,
closeAction : 'hide',
bodyStyle : 'padding: 10px',
items : [addQuestionForm]
});
addQuestionWindow.show();
});
问题是:当我按下“添加”按钮时,首先没有任何反应,其次我在我的登录页面上返回,我应该写入登录&密码。 WTF?所以当我按下按钮时,我认为会话被破坏了?怎么避免这个?不要理解。我的代码按钮可能有问题吗?
答案 0 :(得分:0)
我希望您在提交未注释的情况下使用网址行运行代码,因为如果您没有指定网址,则提交无效。