Unplanned
Last Updated: 26 Apr 2016 15:13 by ADMIN
To reproduce:
- Insert the following HTML vide the HtmlFormatProvider: "<!DOCTYPE html><html><head><title>test</title> <body><span >Hello,</span><p ><span >Kind regards,</span></p> <br /> <span >Test</span><p><a href=\"#\"><span>Hyperlink</span></a><span ><br /></span><span >test: 0</span><span ><br /></span><span>Test</span><span  </span></p></body></html>"

- Start the application place the caret in front of the link and press the tab key, you will notice that the text below the link is also moved.

This behavior is also observed when the text box contains plain text or a imported rtf, just move the caret at the top left corner, in front of all text and press Tab. 
Unplanned
Last Updated: 28 Sep 2017 11:33 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: RichTextEditor
Type: Feature Request
9
To reproduce:
Format a document with tables in MSWord. For example Insert a picture to the left and a table to the right. Import the document into RadRichTextBox. You will see that the formatting is not the same.
Unplanned
Last Updated: 15 Aug 2017 09:38 by ADMIN
ADMIN
Created by: Anton
Comments: 0
Category: RichTextEditor
Type: Feature Request
3
RadRichTextBox - add import from PDF file.
Unplanned
Last Updated: 15 Aug 2017 09:38 by Svetlin
Improve redo-undo functionality of RadRichTextBox to allow removing a whole sentence or word by pressing CTRL+Z
Unplanned
Last Updated: 26 Apr 2016 14:39 by Svetlin
The Docm (docx) and RTF files are not imported correctly. 

- Paragraph's alignment is not imported when RTF file is opened by RadRichTextBox
- Importing of Docm (docx) file does not imports images and does not apply correct borders of table
Unplanned
Last Updated: 30 Mar 2016 11:00 by Svetlin
The HtmlFormatProvider does not import correctly html content of div tags and css styles.
Unplanned
Last Updated: 15 Aug 2017 09:33 by Svetlin
Html export of RadRichTextBox to perform font-size export in different units.

Case 2:
If you export a document using the HtmlFormatProvider, all style properties which contain measurement units are exported in pixel units. This makes the exported documents look much smaller when opened on devices with higher pixel density.

WORKAROUND: use Regex to find, convert and replace the font-size attributes

            HtmlFormatProvider html = new HtmlFormatProvider();
            string res = html.Export(document);
            Regex regex = new Regex(@"font-size: [0-9]*\.?[0-9]*px");
            Match match = null;

            do
            {
                match = regex.Match(res);
                if (!match.Success)
                {
                    break;
                }

                string value = match.Value.Substring("font-size: ".Length, match.Value.Length - "font-size: ".Length - "px".Length);
                double pts = double.Parse(value) * 72 / 96;
                res = res.Replace(match.Value, @"font-size: " + Math.Round(pts, 4) + "pt");
            } while (match.Success);

            File.WriteAllText("output.html", res);
Unplanned
Last Updated: 08 Aug 2017 10:47 by Svetlin
When a table cell contains nested table, and the paragraph after the nested table is empty, this paragraph could be collapsed, as in MS Word. This gives better look to nested tables, similar to how browsers visualize nested HTML tables.
Note that the paragraph should be visualized when the caret moves the position inside the paragraph.

Currently the paragraph is visualized with its full height, making the layout different than MS Word - it appears that there are redundant space after the nested table.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
ADD. RadRichTextBox - add support for auto capitalization
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 2
Category: RichTextEditor
Type: Feature Request
7
ADD. RadRichTextBox - add support for line numbering
Unplanned
Last Updated: 15 Aug 2017 09:33 by Svetlin
Created by: Svetlin
Comments: 0
Category: RichTextEditor
Type: Feature Request
8
Support for opening word templates in RadRichTextBox
Unplanned
Last Updated: 30 Mar 2016 10:58 by ADMIN
Import the following code:
<ol>
  <li>Coffee</li>
  <li></li>
  <li>Milk</li>
</ol
Unplanned
Last Updated: 30 Mar 2016 10:56 by Svetlin
Workaround:

public class MyInputBehavior : InputBehavior
{
    public MyInputBehavior(DocumentView view)
        : base(view)
    {
  
    }
  
    public override bool ProcessKeyPress(System.Windows.Forms.KeyPressEventArgs e)
    {
        // TO DO: You code here
        e.KeyChar = char.ToUpper(e.KeyChar);
        return true;
        // By commenting the base call you are supresing the default logic
        //return base.ProcessKeyPress(e);
    }
}

Then you should replace the default input behavior by using the following code snippet:
this.richTextBox.DocumentView.InputBehavior = new MyInputBehavior(this.richTextBox.DocumentView);
Unplanned
Last Updated: 15 Aug 2017 09:33 by Jesse Dyck
IMPROVE. RadRichTextBox - should be able to run with .NET Framework 3.5, rather than 4.0
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 09:33 by Svetlin
ADD. Export of Office 2010 dotx document templates.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
ADD. RadRichTextBox - import text boxes from docx files
Unplanned
Last Updated: 15 Aug 2017 09:33 by Jesse Dyck
Currently it is not possible to control the HTML exported from RadRichTextBox and strip styles or embed them.
Unplanned
Last Updated: 31 Mar 2016 09:43 by Jesse Dyck
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
Currently this product cannot read the text contained in RichTextBox.