I'm trying to display rich text inside of a column of a WPF DataGrid (from WPF Toolkit). Something like this:
Name: Bob
Title: Doctor
I am creating a data object programmatically in code with the string property. And I want this string to contain the rich text and than bind it to the column contents. Is that possible?
Would really ap...
This is a follow-up to another question I asked earlier today. I am creating a desktop app that stores rich text documents created in WPF (in a RichTextBox control). The app uses SQL Compact, and up until now, I had planned to store each document in a binary column in the database.
I am rethinking that approach. Would it be better pra...
I'm just getting started on a new iPhone/iPad development project, and I need to display a document with rich styled text (potentially with embedded images). The user will touch the document, dragging to highlight individual words or multiline text spans. When the text is highlighted, a context menu will appear, letting them change the c...
Hi all I wanted to allow the users to enter html and links in textbox. How can I achieve something like this in ASP.NET MVC 2? I have something like this now...
<div class="editor-field">
<%= Html.TextAreaFor(model => model.Description) %>
<%= Html.ValidationMessageFor(model => model.Description) %>
</di...
I'm trying to do a rich text editor for a web application, and I need to be able to mark some elements in the text as uneditable by the user. The reason for this is they're placeholders for dynamic content (like created date) that I want to have a live preview for.
Take the following Code as an example - there's no toolbar or anything i...
Hi,
I searched around for a basic WYSIWYG rich text editor that I can use in a JSF 2 (VDL) application, but found nothing satisfactory.. in the sense that:
The editor is very extensive, and not configurable (like PrimeFaces)
The editor doesn't work with VDL (like RichFaces)
Multiple instances of the editor cannot be used on the same p...
Hi Everyone,
One of our products uses a Javascript Rich text editor, which has the ability to accept pasted HTML/Word and clean it up so the html is XHtml valid and presentable.
This has been working fine for a few years, but recently we've been having complaints about pasting; from users with IE8.
It turns out that regardless of sett...
I need to create a rich text editor (for text alignment, fonts, text and background colours, bold, italics, underlining etc) for an iPhone and iPad app. How should I accomplish. I have heard of storing the data as HTML and rendering it in a UIWebView, but how can I allow the user to edit the data without having to interact with the HTML ...
I am trying to customize jwysiwyg jquery RTE. I would like to build an image attributes editor so that once an image is inserted into the editable region, the user would select it and then a modal window or properties panel would appear allowing the user to edit the width/height etc. Analogous to gmails image insert UI.
The problem is I...
I am currently using RichText control in my program. It creates several instances of RichText control (hundreds) because it’s a sticky notes program.
I wish to replace it with a lightweight HTML control which will have functionality similar to RichText control (text formatting, bullets, links, images etc)
Do you know if any free/commer...
Is there a good way to force pasting as text inside Rich Text Fields inside Sitecore? I know there's a "Paste as Text" button in the Rich Text Editor itself, but content authors are almost definitely going to just hit Ctrl+V or Right-Click->Paste to put the text in, and if that content came from Word, all hell breaks loose with the marku...
I am designing an application that has one requirement of enabling the user to edit and view rich text content. I am not talking about Microsoft Word like editing but more something along the lines of the RichTextControl on Windows or the various Javscript BBCode Editors.
The ability to embed images would be an advantage though. The pl...
We are currently sending our emails as HTML but it is not rendering properly on the blackberry. It add's extra blank lines. I assume that is because of the tag. Anyways when sending them as plain text they render correctly, but now the user wants some of the keywords to be bolded. Would rich text format be viable? Should it render prope...
I need Free Rich Text Editor to use on ASP.NET.
Any suggestions?
...
Hello Gurus,
I have a web application that uses TinyMce to allow rich text editing. Some of my customers are desperate to get it to work on iPad (which doesn't support contenteditable and therefore TinyMce doesn't work)
At the moment the only choices I have are:
Disallow rich text editing when i detect the browser is iPad. This is no...
Hello, experts!
I have Pdf file that contains acroforms which is made by Window's Acrobat program. I need to write Rich Text including Bold text and lists in that acroforms. How can I do it using Java's IText library? I should mention that forms should be flattened(Read only behaviour is also alowed). Maybe somebody has a working exampl...
How does one apply rich text to Flash at runtime? Specifically, I need to dynamically create bullet-points and paragraphs with line breaks.
...
I want to show some formatted text in a client WPF application which the user can select and copy to word.
It needs to be easily created by the app, and the biggest formatting thing inside is a table where some cells are right-aligned.
What is best to use here? A richtext control is hard to fill (I think) and html is not easy to show, ...