Pages

Monday, February 10, 2014

How to Hide RadEditor Toolbar


How to Hide RadEditor Toolbar 

Requirement
No doubt that “Telerik” controls are very useful and they have so much to offer but sometimes there are few things which “Telerik” doesn’t provide to meet our requirement purpose. Hiding “RadEditor” control toolbar is one of them. “RadEditor” control doesn’t comes with any property to hide its toolbar.

Solution
So what’s the solution to hide “RadEditor” control toolbar? Solution is to hide it through a "CSS" class.

How?
On your page where you are using “RadEditor” contorl or in a “CSS” file which you are referring in your page, you can put below line of code to hide it:
<style type="text/css">
    .reToolbarWrapper
    {
        display: none;
    }
</style>

 
That should do it!!







Read More »