This is a migrated thread and some comments may be shown as answers.

Table Borders are draggable in ReadOnly mode

7 Answers 79 Views
RichTextBox
This is a migrated thread and some comments may be shown as answers.
Maksym
Top achievements
Rank 1
Maksym asked on 27 Apr 2011, 03:51 PM
Hi,

When IsReadOnly property of RadRichTextBox is set to True, the table borders are still draggable.

I suppose they shouldn't be.

7 Answers, 1 is accepted

Sort by
0
Iva Toteva
Telerik team
answered on 28 Apr 2011, 08:20 AM
Hello Maksym,

Thank you for pointing this out. We will add this issue to our to-do list. The thumbs for resizing the table will not work in read-only mode in the next version. The points in your account have been updated for the report.
Let us know if anything else pops up.

Kind regards,
Iva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Iosu Buenetxea
Top achievements
Rank 1
answered on 16 Jun 2011, 11:33 AM
Hi, we have version 2011.1.419.1040 and the issue still occurs.

Regards,

Iosu.
0
Iva Toteva
Telerik team
answered on 16 Jun 2011, 03:58 PM
Hi Iosu,

Yes, the 2011.1.419.1040 version was released around April 19th and it was only later that we noticed this issue. It has been fixed in the development version and the fix will be released in a few days in the Q2 Beta. The fix will also be included in the official release in mid-July and all subsequent versions.

Best wishes,
Iva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Laurent
Top achievements
Rank 1
answered on 22 Aug 2012, 07:46 PM
Has this issue been solved?
I am using 2012.2.725.1050 and setting the RadRichTextBox to readonly mode still gives me draggable tables.
0
Ian
Top achievements
Rank 1
answered on 24 Aug 2012, 04:45 PM
Agreed. Tables are still draggable so they can be repositioned within the rest of the text, even when IsReadOnly="True".

It would seem that this issue has been lingering for some time now. Telerik, please don't let this drag on any longer.

We will really benefit from this fix, which I hope will be out as soon as possible.

--Ian
0
Petya
Telerik team
answered on 27 Aug 2012, 02:15 PM
Hello Laurent, Ian,

Thank you for getting to us!

The original thread refered to a different issue which, fortunately, has been fixed. It was concerning the borders of a table and not the movement of the table itself.

However, you are right that in the current version tables can be moved when IsReadOnly is set to true. This is a known problem and we have logged it for revision. You can follow our progress using the following PITS issue:
You can follow the PITS Issue by its ID: 12458
Public Url: http://www.telerik.com/support/pits.aspx#/public/silverlight/12458 

In the meantime, as a workaround you can disable the TableMovementLayer as follows:
public MainPage()
{
    InitializeComponent();
    this.editor.UILayersBuilder = new CustomUILayerBuilder();
}
 
class CustomUILayerBuilder : UILayersBuilder
{
    protected override void BuildUILayersOverride(IUILayerContainer uiLayerContainer)
    {
        base.BuildUILayersOverride(uiLayerContainer);
        uiLayerContainer.UILayers.Remove(DefaultUILayers.TableMovementLayer);
    }
}

Please, excuse us for the inconvenience. I hope this helps!

Greetings,
Petya
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

0
Ian
Top achievements
Rank 1
answered on 27 Aug 2012, 03:40 PM
Thanks very much for the quick and constructive response, Petya. I can't ask for much more than that!

(I've also upvoted the bug in the issue tracker.)

--Ian
Tags
RichTextBox
Asked by
Maksym
Top achievements
Rank 1
Answers by
Iva Toteva
Telerik team
Iosu Buenetxea
Top achievements
Rank 1
Laurent
Top achievements
Rank 1
Ian
Top achievements
Rank 1
Petya
Telerik team
Share this question
or