我创建一个jQuery基于向导的形式(在5步分裂) 向导的形式 ,在最后两个步骤我放了两个CKEditor的respectively.My问题是,这两个ckeditors都没有响应,即他们不接受任何input.I一时无法弄清楚为什么这个happens.the相同的CKEditor正常工作不形wizard.I认为有表单向导插件和插件的CKEditor之间的冲突,但不知道到底发生了什么那里。
在github上示例项目 Grails项目的链接 。
EDIT1:
这是我的自定义设置:
<div class="form-content">
<div class="wizard-ignore">
<script type="text/javascript">
<ckeditor:config var="toolbar_Mytoolbar">
[
[ 'Bold', 'Italic', 'Underline', 'Scayt' ]
]
</ckeditor:config>
delete CKEDITOR.instances['${name}'];
CKEDITOR.config.scayt_autoStartup = true;
CKEDITOR.config.fillEmptyBlocks = false;
function CKupdate() {
for (instance in CKEDITOR.instances) {
CKEDITOR.instances[instance].updateElement();
}
}
<ckeditor:editor name="${name}" height="100px" width="98%" toolbar="Mytoolbar">
<g:if test="${summary}">
${summary}
</g:if>
</ckeditor:editor>
</script>
</div>
</div>
当我把一些警报(); 在上面的脚本语句 firefox.unable CKEditor的工作找到根cause.Any建议/想法会帮助我。
EDIT2:在github上示例项目Grails项目的链接 。