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

How to change crop dialog

1 Answer 77 Views
ImageEditor
This is a migrated thread and some comments may be shown as answers.
Amadeo
Top achievements
Rank 1
Amadeo asked on 18 Aug 2011, 04:14 PM
Good morning,
today i bought a full version of Telerik Ajax ASP.NET components and i am trying to use RadImageEditor for croping my images. What i need to do is edit crop dialog - remove two its buttons - http://imageshack.us/photo/my-images/651/imgzkz.jpg/

Can you please help me?

Thanks
Amadeo Mareš

1 Answer, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 19 Aug 2011, 12:32 PM
Hi Amadeo,

To remove the two buttons you should set their wrapping element to display: none. You could put the style into the head section of the document, as I did in the bellow sample example, or to put the CSS rule in an external stylesheet:

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
    <style type="text/css">
        .rieResizeButtons
        {
            display: none;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadSkinManager ID="rsm1" runat="server" ShowChooser="true"></telerik:RadSkinManager>
        <telerik:RadImageEditor ID="rm1" runat="server"></telerik:RadImageEditor>
    </form>
</body>
</html>


Best wishes,
Bojo
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
ImageEditor
Asked by
Amadeo
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Share this question
or