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

Radeditor not resizeable with single Editmode

3 Answers 34 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Emir Prcic
Top achievements
Rank 1
Emir Prcic asked on 12 Jul 2011, 08:10 AM
Hy,

I want to use the RadEditor in Designmode only. However, if I use just a single Editmode, the Radeditor is not resizeable anymore (the icon on the lower right corner disappears). It is only available when using 2 or more Editmodes.

Is there a way to have the radeditor resizeable, with using just a single editmode?

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 12 Jul 2011, 12:38 PM
Hi Emir,

Please, see the following forum article: http://www.telerik.com/community/forums/aspnet-ajax/editor/enableresize-problem.aspx.

The solution is to put the following class on the page with RadEditor:

<style type="text/css">
.reToolZone table tr
{
display: block!important;
}
</style>




Greetings,
Rumen
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Emir Prcic
Top achievements
Rank 1
answered on 12 Jul 2011, 01:00 PM
thanks, that works

However, in Firefox the Resize-Icon is situated now on the left corner. In IE it is in the right corner, as it should be

I found out, that in IE the div-section with the Resizer has the style attribute "float: right;", which is missing in Firefox.

0
Accepted
Rumen
Telerik team
answered on 12 Jul 2011, 01:37 PM
Hi,

Add the following class to fix the FF issue:

.reResizeCell { width: 100% !important; } 

e.g.

<style type="text/css">
    .reToolZone table tr
    {
        display: block !important;
    }
    .reResizeCell { width: 100% !important; }
</style>




Greetings,
Rumen
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
Editor
Asked by
Emir Prcic
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Emir Prcic
Top achievements
Rank 1
Share this question
or