MVC editor wysiwyg?

I was wondering if you know a good wysiwyg editor is used with asp.net mvc? I have looked at Telerik editor and it seems very enjoyable.

Which ones do you recommend using with asp.net mvc? or there will be any work in views, as with "normal" asp.net

Regards

/ M

+2


source to share


5 answers


Any WYSIWYG editor will work as long as it doesn't require runat="server"

or viewstate.



Telerik's editor looks good, although it looks like you can't buy it separately. I would check them for ASP.NET MVC compatibility.

+2


source


I was lucky enough to use jQuery and the jHTMLArea WYSIWYG editor is nice and simple.

All you need to do to implement it:



 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jHtmlArea-0.6.0.min.js"></script>
<link rel="Stylesheet" type="text/css" href="style/jHtmlArea.css" />

<textarea id="htmlEditor" cols="50" rows="15">This is some text for editor</textarea>

<script type="text/javascript">
    $(function() {
      $("htmlEditor").htmlarea();        
    });
</script>

      

+9


source


I have looked at Tiny MCE and how it was incorporated into the Camp Camp Server Project .

+1


source


I've used Xinha with MVC and it's pretty good. Almost all of them work with any standard HTML "text field", so they will be broadly applicable to any application / frame / language. Xinha has some functionality that expects PHP but works without it.

0


source


Recently MS added the HTML Editor to ASP.NET AJAX Toolkit and the latest drop Script Files Only (ideal for use in ASP.NET MVC) on CodePlex also contains nice miniature versions of scripts.

0


source







All Articles