I am very new to using this rad Control and unfamilar with how it works. I am loading the image via a ajax call, as shown in one of the demos. After the image is loaded, When I select the crop icon, the dialog comes up but does not load properly, the textboxs are not editable and the dropdown list is not working. When I select the crop button to crop the image, it does not crop around the area that the tool was hovered over.
<
telerik:RadImageEditor
ID
=
"ImageEditor"
runat
=
"server"
ToolsFile
=
"~/DataPages/Basic.xml"
ToolsLoadPanelType
=
"XmlHttpPanel"
<br> Width="820px" Height="383px" EnableResize="false" OnImageEditing="RadImageEditor1_ImageEditing" <
br
> ><
br
> <
Tools
><
br
> <
telerik:ImageEditorToolGroup
><
br
> <
telerik:ImageEditorTool
CommandName
=
"Crop"
/><
br
> <
telerik:ImageEditorToolSeparator
/><
br
> <
telerik:ImageEditorTool
CommandName
=
"MakeGrayscale"
ToolTip
=
"Make Grayscale"
ImageUrl
=
"/img/bw.png"
/><
br
> <
telerik:ImageEditorTool
CommandName
=
"RoundCorners"
ToolTip
=
"Round Corners"
ImageUrl
=
"/img/rounded.png"
/><
br
> <
br
> </
telerik:ImageEditorToolGroup
><
br
> </
Tools
><
br
> </
telerik:RadImageEditor
>
function
LoadImageIntoEditor(photoID) {
//Load Image
$find(
"<%= RadAjaxManager.GetCurrent(Page).ClientID %>"
).ajaxRequest(
"LoadImage*"
+ photoID);
}