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

Hide Back image in Table Wizard

1 Answer 41 Views
Editor
This is a migrated thread and some comments may be shown as answers.
BV
Top achievements
Rank 1
BV asked on 08 Feb 2011, 04:56 PM
Can you please tell me how to hide Back image in table wizard ( editor -- >Module manager-->Cell Properties--> Back Image).

If this can be achieved by css. Can you please tell the css path also. I am not using custom Css.

Thanks
BV

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 08 Feb 2011, 06:30 PM
Hello BV,

The Image Dialog Caller control in the mentioned dialog has a reImageDialogCaller css class, which means that you can overwrite this class and import it in the dialogs through the DialogsCssFile property of RadEditor, e.g.

1) Create a css files named dialogs.css
2) put the following class in it:

.reImageDialogCaller
{
 display: none !important;
}

3) save the css file and load it through the DialogsCssFile property of RadEditor:

 <telerik:RadEditor ID="RadEditor1" runat="server" DialogsCssFile="dialogs.css">
 </telerik:RadEditor>

Another way is to register the external dialog files of RadEditor and apply style="display:none" to the elements that you want to hide as shown in the following live demo: Customizing RadEditor's built-in dialogs.

Best regards,
Rumen
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Editor
Asked by
BV
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or