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

[Solved] ImageManager : Scrollbar doesn't appear into "Adjust Image Properties" Popup

3 Answers 127 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Suzi
Top achievements
Rank 1
Suzi asked on 12 Jan 2010, 03:46 PM
When I right click on an image, and I click on "Adjust Image Properties", The scrollbar doesn't appears into the popup "Adjust Image Properties". So, I can see and click on the button "OK" placed at the bottom of the page.
I am using 2008, 2, 723, 20.

Thank you in advance,

Suzi 

3 Answers, 1 is accepted

Sort by
0
Dobromir
Telerik team
answered on 13 Jan 2010, 02:08 PM
Hi Suzi,

There was a known problem with the size of the dialogs which was fixed in the later releases, so I recommend you to update the version of your Telerik RadControls to the latest version. In addition the version you are using does not fully support Internet Explorer 8 (full support for IE8 was introduced in Q1 2009 SP1 version 2009.1.402) which was released in March 19, 2009.

Also, this problem might be caused by a custom skin or customization of the dialog because the size of the window is fixed.


All the best,
Dobromir
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.
0
Suzi
Top achievements
Rank 1
answered on 13 Jan 2010, 02:12 PM
Thank you, I will update the version of telerik in the future. I have to find a quick solution at the moment.
Is it possible to desactive this popup "Adjust Image Properties"  into the tools.xml file for example ?
How may I to do that ?

Thank you in advance and for your answer,

Suzi.
0
Dobromir
Telerik team
answered on 15 Jan 2010, 03:50 PM
Hi Suzi,

Yes, it is possible to disable this tool from ToolsFile.xml, but it will be still available in the built-in System Module NodeInspector which cannot be modified. In order to modify Context Menus from ToolsFile.xml you need to declare all the required items.

Example of the context menu declaration is available in the DefaultToolsFile.xml from the following KB article:
Default ToolsFile.xml file of RadEditor for ASP.NET AJAX
the entire <contextMenus> section and remove the node <tool Name="SetImageProperties" />.

As an alternate solution I will suggest you to cancel the execution of the command SetImageProperties because this will disable this popup to be opened from the NodeInspector as well. This can be achieved with the following javascript code:
<telerik:RadEditor ID="RadEditor1" runat="server" OnClientCommandExecuting="OnClientCommandExecuting">
</telerik:RadEditor>
<script type="text/javascript">
    function OnClientCommandExecuting(editor, args) {
        if (args.get_commandName() == "SetImageProperties") {
            alert("This feature is temporally unavailable!");
            args.set_cancel(true);
        }
    }
</script>

I hope this information helps.

Greetings,
Dobromir
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
Suzi
Top achievements
Rank 1
Answers by
Dobromir
Telerik team
Suzi
Top achievements
Rank 1
Share this question
or