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

Properties Tab in ImagePreviewer (ImageManager Control)

1 Answer 30 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Robin Stemp
Top achievements
Rank 1
Robin Stemp asked on 05 Nov 2010, 01:31 AM
We are trying to modify the image preview properties tab that is shown in the right side of the image manager browser (left side contains radfileexplorer and right side contains imagepreviewer in filebrowser dialog).

What would be the best approach to modifying the properties tab or removing it completely on the image manager?

1 Answer, 1 is accepted

Sort by
0
Dobromir
Telerik team
answered on 10 Nov 2010, 10:38 AM
Hi Robin,

Properties tab of the ImageManager dialog is the same dialog as SetImageProperties. In order to customize it you need to modify the built-in dialog SetImageProperties.ascx . Detailed information on how to modify built-in dialogs is available in the following live demo:
Customize Built-in Dialogs

The easiest and safest approach to 'remove' the Properties tab from the ImageManager dialog is to remove only the tab - remove the Properties tab declaration from the RadTabStrip, e.g.:
<telerik:RadTabStrip ID="imageTabStrip" Width="100%" runat="server" Orientation="HorizontalBottom" ShowBaseLine="true"
    MultiPageID="imageMultiPage">
    <Tabs>
        <telerik:RadTab Text="Preview" Value="Preview" Selected="true" />
        <%--<telerik:RadTab Text="Properties" Value="Properties" />--%>
    </Tabs>
</telerik:RadTabStrip>

I hope this helps.

Best wishes,
Dobromir
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
Tags
Editor
Asked by
Robin Stemp
Top achievements
Rank 1
Answers by
Dobromir
Telerik team
Share this question
or