1

我创建了一个新的 MVC4 项目,并从 Nuget 添加了 N2 和 Dinamico。一直运行良好,直到我注意到 tinyMCE 编辑器没有显示在文本框中,所以我也从 Nuget 添加了 tinyMCE,但它仍然没有显示。

在 Firebug 控制台中,存在三个 Javascript 错误,因此我怀疑脚本在到达 tinyMCE 初始化代码之前停止运行。错误都在 Edit.aspx 末尾生成的代码中:

TypeError: jQuery("#Frame_Outside_Name_e").n2name is not a function 
TypeError: jQuery(".datePicker").n2datepicker is not a function 
TypeError: $.cookie is not a function 

我想我缺少一两个文件,但我不知道如何获取它们。

4

1 回答 1

0

I recommend that you upgrade to the latest version of N2 (at http://github.com/n2cms/n2cms) which uses ckeditor rather than tinymce. You can get binaries here: http://bitbucket.org/bherila/n2cms/downloads and install via NuGet: Install-Package N2CMS.Dinamico -Source [path_to_extracted_archive]

于 2013-04-18T16:17:56.643 回答