Using TinyMCE with ASP.NET MVC

My TinyMCE works fine in my ASP.NET MVC application, with the exception of spell checking. I have been following this article, but when I try to use spell checking, it gives me the message "Error: no response."

Any ideas on how to solve this problem?

Thanks in advance!

+1
source share
2 answers

Someone else had (as it sounds) the same problem here . The solution was to ensure that the application did not interpret the spellechecker service as an attempt to route MVC . In other words, you need to add something like this to your route definitions:

routes.IgnoreRoute("TinyMCE.ashx"); 
+3
source

Sounds like a problem with ajax.

0
source

Source: https://habr.com/ru/post/1313863/


All Articles