Completed
Last Updated: 14 Sep 2021 09:48 by ADMIN
Release R1 2017
When the command dialogs from two ImageEditors on a page are opened consecutively, the second dock is rendered with wrong position. The issue most probably comes from the fact the second dock element (ToolsPanel) is appended to its parent ImageEditor, but not to the form.

Assuring that each dock is appended to the form element can be used as a temporary workaround of the issue:

        <telerik:RadImageEditor ID="RadImageEditor1" runat="server" Width="680" Height="450" OnClientDialogLoaded="ClientDialogLoaded"
            ImageUrl="waterpool.jpg">
        </telerik:RadImageEditor>
        <telerik:RadImageEditor ID="RadImageEditor2" runat="server" Width="680" Height="450" OnClientDialogLoaded="ClientDialogLoaded"
            ImageUrl="waterpool.jpg">
        </telerik:RadImageEditor>
        <script>
            function ClientDialogLoaded(imageEditor, args) {
                setTimeout(function () {
                    $telerik.$("#<%=form1.ClientID %>").append($get(imageEditor.get_id() + "_ToolsPanel"));
                }, 0);
            }
        </script>
Completed
Last Updated: 19 Jan 2017 08:03 by ADMIN
A large uploaded image is not saved properly after cropping in disabled CanvasMode. Instead of saving the cropped part of the image, the control is saving the original image resized to fit the cropped part size.

The issue is reproducible both by using the Save dialog (Save image on server) or the saveImageOnServer() method.

Steps to reproduce:

1. Open http://demos.telerik.com/aspnet-ajax/imageeditor/examples/imageupload/defaultcs.aspx in IE8
2. Upload the attached image
3. Crop a part of it
4. Save the image on server

Result: The original image is resized with the crop-box dimensions.


Completed
Last Updated: 05 May 2015 10:43 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: ImageEditor
Type: Bug Report
0
The new version allows shape resizing on the image editor. 

However this is not working in a stable fashion. Here is the list of steps to replicate

a. Draw a rectangle
b. Hold the central marker to drag the rectangle. it moves slightly and then nothing happens
c. Try holding any other marker to move the rectangle it does not work
Completed
Last Updated: 04 Sep 2013 12:17 by ADMIN
ADMIN
Created by: Stamo Gochev
Comments: 0
Category: ImageEditor
Type: Bug Report
1
After the LIB (2013.1.423) the Save (on server) functionality of the ImageEditor doesn't work properly and throws a javascript error.
Declined
Last Updated: 01 Nov 2013 13:06 by ADMIN
When a big image(~3MB) is loaded into the ImageEditor ( with enabled CanvasMode) sometimes the image is not loaded into the controls or the whole page crashes. The issue could be reproduced in Google Chrome, with the 2013 Q1 SP1 version of the controls.
Completed
Last Updated: 24 Dec 2014 14:48 by ADMIN
When the CanvasMode of the ImageEditor is enabled, the JPG images are saved as PNG.

Steps to reproduce:

1. Open the following online demo: http://demos.telerik.com/aspnet-ajax/imageeditor/examples/canvassupport/defaultcs.aspx

2. Use the configurator above the ImageEditor to enable the CanvasMode

3. Save the image, choosing the "Download image" option

4. The image, which original format is JPG is saved as a PNG (with increased size)

A video, demonstrating the issue is available here: http://screencast.com/t/FL3Gs6soz7F
Completed
Last Updated: 13 Aug 2021 11:36 by ADMIN
Release Q2 2015
Completed
Last Updated: 01 Jun 2021 13:20 by ADMIN
Release Q3 2015
Completed
Last Updated: 28 Mar 2017 15:07 by ADMIN
1 2