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

[Solved] RadEditor as Textbox UI for Outlook Skin

3 Answers 128 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Andy
Top achievements
Rank 1
Andy asked on 28 Oct 2008, 04:25 PM
Hi,
      I have upgraded to the 2008.2.1001.35 release of RadTools.
I had implemented your solution for displaying the RadEditor with a single pixel border (to look like a simple imput box) using the Default skin.
The solution does not work for the Outlook skin.

Can you provide a modification to that solution which works with the Outlook skin?

This solution you provided was taken from documentation section your Web site.

Thanks, Andy

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 30 Oct 2008, 11:27 AM
Hi Andy,

To achieve your goal you should add the following class .rade_contentCell { border: 0 !important; }
to the rest of the example css classes. Here are the complete list of css classes that you need to set when using the Outlook skin:

<style type="text/css">   
/* The following CSS needs to be copied to the page to produce textbox-like RadEditor */
.rade_wrapper_corner, .rade_wrapper_center
{
    display: none !important;               
}
           
.rade_leftVerticalSide, .rade_rightVerticalSide, .rade_toolZone
{
    filter: alpha(opacity=0) !important;
    opacity: 0 !important;
}
.rade_ajaxspell_wrapper { display:none;}
.formInput
{
   border: solid 1px black;
}
.rade_contentCell
{
  border: 0 !important;
}

</style>


Kind regards,
Rumen
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Andy
Top achievements
Rank 1
answered on 22 Jan 2010, 07:53 PM
Hi,
I am looking at upgrading my ASP.NET code to use your latest release of the RadEditor (2009.3).
Do you have support for a single pixel border in the new release with any of your skins?
I would like to reduce or eliminate the customizations I made to your css and JS I had to write to implement the single pixel border if you have a solution in the new release.

Thanks, Andy
0
Rumen
Telerik team
answered on 26 Jan 2010, 05:33 PM
Hi Andy,

The provided css classes below should work with the latest Q3 SP2 2009 release of RadControls for ASP.NET AJAX. My suggestion is to make a sample project and test them.

You can also test the Display As Textbox demo.


All the best,
Rumen
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Editor
Asked by
Andy
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Andy
Top achievements
Rank 1
Share this question
or