主题: 黏贴后,文字内容过多,不能提交
作者: 羊的诱惑, 发布日期: 2012-05-28 14:52:14, 浏览数: 3102

我做的是用ext集成了kindeditor,现在是一黏贴就不能提交。黏贴少量文字就行。
ggcontent = new Ext.form.TextArea({
        id: 'ggcontent', 
        name: 'ggcontent',
        fieldLabel: '内容',
        preventScrollbars: true,
allowBlank: true,
listeners: {
                "render": function (f) {
                    htmlEditor = K.create('#ggcontent', {
                        uploadJson: '<%=basePath %>jsp/index/editor/jsp/upload_json.jsp',
                        fileManagerJson : '<%=basePath %>jsp/index/editor/jsp/file_manager_json.jsp',
                        width: '95%',
                        height: '300px',
                        resizeType : 1,
allowPreviewEmoticons : true,
allowImageUpload : true,
items : [
'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'image']
                    });
                }
          }
    });
我用普通的方式,未集成ext就可以,
关于这个集成的问题,能帮忙解决下吗?

作者: Roddy, 发布日期: 2012-05-28 15:50:38
是不是有JS错误,脚本停止运行。
回复
作者: 羊的诱惑, 发布日期: 2012-05-28 16:06:56
回复Roddy:有时有,有时没有。。。,不过总的来说,就是点提交没反应
回复
作者: 羊的诱惑, 发布日期: 2012-05-29 09:11:24
var jsonData = Ext.encode(data);
alert(7);
alert(data.ggcontent);
Ext.Ajax.request({
waitMsg : 'Saving changes...',
url : CONTEXT_PATH + '/servlet/teamConstructServlet',
method : "POST",
params : {
method: method,
type: type,
title: data.title,
content1: data.ggcontent,
url: data.url,
post_id: data.post_id
},
xmlData : jsonData,
success : function(response, params) {
alert("success");
form.reset();
simpleSearchFun();
closeWin();
//importantWorkGrid.getStore().load();
}
});

alert(8);

alert所有的都行,就是alert(“success”)不行,没有进入到Ext.Ajax.request({})提交中。alert(data.ggcontent)也有值

回复
发表新帖 发表回复