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

imageeditor filters

1 Answer 67 Views
ImageEditor
This is a migrated thread and some comments may be shown as answers.
asad
Top achievements
Rank 1
asad asked on 18 Aug 2014, 01:56 PM
Dear telerik team

i have developed one image editor by the help of your online docs
located at
http://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx

but when i run this code on my local machine i dont get my desired result

my code runs successfully but the last two plugins/filter are not showing i.e

brightness/contrast and pencil
 
please suggest me what to do

code is pasted below
---------------------------------------
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ImageSample.aspx.cs" Inherits="SampleImageProcessing.ImageSample" %>

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <style type="text/css">
        .divList
        {
            float: left;
            width: 180px;
        }
        
        .RadDock.rieDialogs
        {
            z-index: 20001\9;
        }
        
        .rddSlide, .rcbSlide
        {
            z-index: 20002\9 !important;
        }
        
        .qsf-black-metro .RadImageEditor_BlackMetroTouch, .RadImageEditor_MetroTouch
        {
            width: 1200px !important;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
        <div class="divList">
            <asp:RadioButtonList ID="RadiosTools" runat="server" AutoPostBack="true" OnSelectedIndexChanged="RadiosTools_SelectedIndexChanged">
                <asp:ListItem Text="Canvas Mode" Selected="True"></asp:ListItem>
                <asp:ListItem Text="Image Mode"></asp:ListItem>
            </asp:RadioButtonList>
            <asp:Label ID="Label2" Text="Choose Mode:" runat="server" AssociatedControlID="RadiosTools"
                Font-Bold="true"></asp:Label>
        </div>
        <div class="qsf-clear-float">
        </div>
        <br />
        <telerik:RadImageEditor ID="RadImageEditor1" runat="server" ImageUrl="~/images.jpg"
            CanvasMode="Yes" Width="1040px" Height="430px">
        </telerik:RadImageEditor>
    </telerik:RadAjaxPanel>
    </form>
</body>
</html>

-------------------------------------

1 Answer, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 21 Aug 2014, 08:29 AM
Hi,

The configuration you posted should display the mentioned tools in the RadImageEditor, so the cause of the problem is most probably somewhere else.

The tools collection of the image editor might be modified on the code-behind. Please check the following help article that describes the approaches for defining the tools and ensure they are not used on the server-side to modify the tools collection: http://www.telerik.com/help/aspnet-ajax/imageeditor-full-set-of-tools.html

One more thing you can check is whether there are problems with the skin of the image editor. If you are using custom skin for the image editor, ensure it is not broken by comparing it with one of the built-in skins.

Also, you may have custom styles that are affecting the tools of image editor. If you have such styles on the page, remove them temporarily, clear the cache and check if the problem persists.

In case none of the above works, I will need a fully runnable sample that isolates the issue at hand in order to reproduce it locally and to pinpoint its cause.

Regards,
Slav
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
ImageEditor
Asked by
asad
Top achievements
Rank 1
Answers by
Slav
Telerik team
Share this question
or