Reputation: 13855
I know there are al sorts of javascript Rich text editors out there.
But I have yet to come across one that is rtf format (NOT HTML).
And free.
I just spent the last few hours implementing Ckeditor, only to find that it doesnt recognise the rtf formatted notes in the database. :(
So what I need is RTF editor for ASP.NET MVC3
Upvotes: 2
Views: 1618
Reputation: 33139
I don't think that exists. Not even TinyMCE and XStandard support RTF.
You'll have to use an RTF-to-HTML Converter (like this one) and store your rich text in HTML instead.
Upvotes: 2