Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
20k views

How do I convert HTML to RTF (Rich Text) in .NET without paying for a component?

Is there a free third-party or .NET class that will convert HTML to RTF (for use in a rich-text enabled Windows Forms control)? The "free" requirement comes from the fact that I'm only working on a ...
10
votes
2answers
2k views

javascript Rich Text Editors

There are several (very good) rich text web editors written in Javascript (eg FCKeditor, YUI Texteditor and many many others). However I couldn't find any tutorial on how to build such a component. ...
7
votes
9answers
5k views

Why there are no WYSIWYG rich text editors in Flash/Silverlight/Whatever?

Or are there? From a desktop software developer point of view (as opposed, perhaps, to that of a web developer), rich web application platforms, such as Flash or Silverlight, look like better tools ...
7
votes
1answer
1k views

Displaying RichText in Crystal Reports

I have a report created in Crystal (the version that comes with Visual Studio 2005) that contains an IFieldObject that I want to use to display some rich text. I have set the TextFormat of the ...
7
votes
4answers
548 views

What's a solid, full-featured open rich text representation usable on the Web?

I'm looking for an internal representation format for text, which would support basic formatting (font face, size, weight, indentation, basic tables, also supporting the following features: ...
6
votes
4answers
4k views

How to make item view render rich (html) text in Qt

Suppose my model has items with the following string for Qt::DisplayRole <span>blah-blah <b>some text</b> other blah</span> I want QTreeView (actually, any item view) to ...
6
votes
3answers
1k views

What is the best free, Ajax.NET (System.Web.Extensions 3.5) compatible Rich Text Box control?

I'm looking for a good ASP.NET RichTextBox component that integrates fairly easily with .NET Framework 3.5 Ajax, specifically one that can easily provide its values from inside an UpdatePanel. I got ...
5
votes
1answer
601 views

Unix Bash Script to Embolden/Underline/Italicize specific text

Afternoon, all! I've been trawling the web trying to find examples of Unix Bash script that can handle basic text styling (Bold/Underline/Italics), but can't find anything? Is such a thing possible ...
5
votes
7answers
3k views

Reset RTF in RichTextBox?

I'm trying to "reset" the formatting in my RichTextBox (WinForms, not WPF). I was previously using richTextBox.Text = richTextBox.Text; However, that seems to have suddenly failed me. Now no ...
4
votes
1answer
223 views

Crystal Reports messing up Rich Text

I have a string that gets saved as rich text to a SQL field, so it has a lot of symbols in front of it like so... {\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fprq2\fcharset0 ...
4
votes
4answers
2k views

How to simulate a rich text view?

I want to simulate this kind of rich text view: (From twitter for iPad) Only the text with the button on the link. ;) How can I place a button on the link? or make the link look as cool as this? I ...
4
votes
2answers
2k views

jQuery Rich Text Editor

I'm currently using TinyMCE 3 on a site, but have noticed it's pretty bloated (many files to download, etc.). I'm working on improving the site's download time, etc. One of the things I want to do is ...
4
votes
3answers
5k views

workaround for contenteditable on iPad

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 ...
4
votes
2answers
376 views

Free Rich Text Editor using on ASP.NET

I need Free Rich Text Editor to use on ASP.NET. Any suggestions?
4
votes
2answers
2k views

Sitecore Rich Text Html Editor Profile - set global default

OK I can't believe this can't be found anywhere so I'm asking the question. Is there a way to set the default Html Editor Profile in Sitecore so I don't have the override the Source field on each ...
4
votes
1answer
465 views

Qt - How to use rich text in a QComboBox?

I am trying to use rich text in a QComboBox but it does not support it. Perhaps I should write a subclass? But I am unsure on what I would need to override as I have never done anything like this ...
4
votes
2answers
5k views

How to create a bold, red text label in Qt?

I want to write a single, bold red line in my application using Qt. As far as I understand, I would create a QLabel, set its textFormat to rich text and give it a rich text string to display: QLabel ...
4
votes
2answers
648 views

Handling Rich Text in an MVC application

What are the best practices regarding working with rich text in a web application? I don't want to leave myself vulnerable to script attacks. Should the data be encoded going into the database and ...
4
votes
2answers
475 views

How do I render rich text to an image?

I'm trying to create a rich text DataGridViewCell. I can host a RichTextBox as the editing control, but when the cell isn't in editing mode I need to paint the rich text myself. I don't want to ...
4
votes
3answers
19k views

Sending formatted Lotus Notes rich text email from Excel VBA

I have little Lotus Script or Notes/Domino knowledge but I have a procedure, copied from somewhere a long time ago, that allows me to email through Notes from VBA. I normally only use this for ...
4
votes
8answers
2k views

Best option for Wiki-like Text Editor to preserve original markup?

We have the need for a web-based wiki-like rich editor able to preserve original markup. At the moment a given custom markup is being converted to html for display and edit (allowing people to edit ...
3
votes
1answer
191 views

UITextInput - How to get it to add standard selection gesture recognizers?

Is there a way to persuade iOS to attach the standard gesture recognizers to a custom view that implements UITextInput? I have implemented all methods of UITextInput, I am drawing selection, the ...
3
votes
1answer
386 views

Extending TinyMCE to show a list of possible Internal pages which the user may wish to link to

Is it possible to extend the TinyMCE rich text editor to allow the insertion of Internal Links to my web sites pages. I already have a function which can return the list of page names and URLs ...
2
votes
3answers
203 views

Looking for a simple rich-text editor usable from VBA

I'd like to allow my users to enter rich text (with bold, italic & underline, but probably nothing more than that) in an entry box on a VBA userform. I don't want the user to have to install ...
2
votes
2answers
69 views

Richtext Toolbar for GWT

Is there anywhere a ready to use "RichText Toolbar" for GWT? It would be good if there would always be the source-code available, so that changes to the toolbar can be made easily. Thanks for your ...
2
votes
0answers
44 views

Android: EditText cannot cope with amout of text?

Does anyone know how it would be possible to load very long text with rich formatting into an EditText without it crashing? Yesterday I tested an app I am working on, and loaded a 600 line XML ...
2
votes
1answer
82 views

Selecting Bold Text

I need to select only the bold text in a RichTextBox in a winform application and then enclose it within brackets : For example: The Rollup Action element describes the desired action that should be ...
2
votes
1answer
238 views

how to toggle rich text formatting in NSTextView programmatically in cocoa

I want to toggle rich text formatting in NSTextView. I have tried following: [contentView setRichText:NO]; [contentView setImportsGraphics:NO]; but, that didn't changed the NSTextView content and ...
2
votes
2answers
1k views

iPhone - UITextView with html content?

The UITextView has a method named setContentToHTMLString that displays html inside a UITextView. But this is a private API and probably gets my app rejected by apple. Is there any way around this to ...
2
votes
1answer
654 views

UILabel with basic rich text support

My ipad application has a custom look. It uses text labels extensively for displaying partly colored/shadowed/bold texts. Larger pieces of text may contain numbered lists and embedded Images. There ...
2
votes
0answers
285 views

flowdocument - inserting rich text at end creating extra paragraph breaks above insertion point

I am creating a flowdocument that consists multiple records. Each record contains two tables at the top, and then some rich text that I'm pulling out of a database. The code that appends the rich ...
2
votes
3answers
796 views

How to display rich text in tooltip ASP.Net?

Experts ! i use the following code to display a tooltip <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="ID" DataSourceID="AccessDataSource1"> ...
2
votes
2answers
3k views

iPhone and iPad Rich Text Editor

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 ...
2
votes
2answers
95 views

Pasting HTML into IE8

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 ...
2
votes
2answers
1k views

Rich text editor for JSF 2

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 ...
2
votes
3answers
541 views

How to Implement Rich Document Editor for iPhone

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 ...
2
votes
1answer
512 views

Does the Flex rich text control have any practical value?

Since the control emits bizzare non-standard HTML, I'm wondering if it has any practical value. The control emits font tags! How are others dealing with it? Do you do some sort of RegEx replace on ...
2
votes
2answers
95 views

What criteria should I take into consideration when allowing users to enter rich text on my website?

I've worked with several different types of "user-generated content" sites: wikis, a message board, blogs... These systems can differ greatly: a blog post editor allows more control over presentation ...
2
votes
5answers
3k views

Customize WebForm module in Drupal

I'm new to Drupal 6.10 CMS and PHP too. I'm creating my website with drupal and I have found a module called Webform I like it, it's pretty easy to create forms with different types of fields and ...
2
votes
3answers
2k views

jQuery: Batiste Rich-Text Editor — how to update content?

I'm using this lightweight jQuery plugin to create a rich-text editor:Batiste RTE jQuery Plugin As part of a more complex form, I have the functionality of clearing changes and I want to be able to ...
2
votes
2answers
432 views

Using MarkDown on dynamic websites?

Do any WYSIWYG editors exist that work natively in Markdown? (any Platform/Language) ...So consumers don't have to see the code behind, just work in an MS-Word like interface. An assisted MarkDown ...
2
votes
3answers
184 views

What simple syntax can be used for rich text?

I want in an application with a simple text input, enriched with some marks to include formatting or semantic labeling. I want the syntax as easy as possible and I want to include self-defined labels. ...
2
votes
3answers
369 views

How can I set the focus inside the Yahoo Rich Text Editor

I have a an HTML form which contains the YAHOO rich text editor on it. When I display the form I want the YAHOO editor to have focus so that the cursor is ready to accept input without the user ...
1
vote
0answers
97 views

Is UITextInput missing selection handling mechanics?

If you implement UITextInput on your custom view and - say - use CoreText to render the text you get to a point where you can draw your own cursor and selection/marking and have that fully working ...
1
vote
1answer
115 views

asp.net regular expression

I created a asp.net page. The rich text area and regular expression validator are existed in this page. I want to check the html span tag that is contained or not in the rich text area. And then, I ...
1
vote
2answers
249 views

Google Transliteration in Rich Text Editor

I need to use Google Transliteration along with rich-text editing support. The Google Transliteration API docs recommend the rich text-editor offered by Closure library or Yahoo! UI Library. But, I ...
1
vote
1answer
99 views

2 rich edit controls, same text

I've put 2 rich edit controls, which should display the same text. So, when I edit the text in one of them, the other should reflect the changes. The problem is - I don't want to put this code in Text ...
1
vote
1answer
275 views

Is there a way to copy code from the Eclipse IDE without the rich-text formatting?

Recently every time I copy a block of code from Eclipse and paste the code into TextEdit or a online forum using the code tags, I get the code with the rich-text or html formatting, so I have to copy ...
1
vote
1answer
273 views

Setting up rich text support for Rails on MySQL and Heroku

What does it take to store a body of formatted text that contains bold, bullet points, and different sizes in Rails? Firstly, does the text field type have the ability to hold this? If so, is it ...
1
vote
1answer
102 views

adding RTF-tagged text to flowdocment in codebehind

I have rich text stored in a database with full RTF tagging, like so: {\rtf1\fbidis\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Tahoma;}} {\colortbl ;\red0\green0\blue0;} ...

1 2