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

RadAsyncUpload doesn’t work with IE 10 and RTL

14 Answers 145 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
ido nahmias
Top achievements
Rank 1
ido nahmias asked on 20 Jun 2013, 01:50 PM

In IE 10 with RTL, the control (textbox and the select button) disappears once it’s being clicked.

You can notice the problem in telerik’s demos:

http://demos.telerik.com/aspnet-ajax/asyncupload/examples/rtl/defaultcs.aspx


Is there any workaround to make it work?

Thanks

14 Answers, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 25 Jun 2013, 08:32 AM
Hello,

 
Unfortunately there is no workaround for the issue but I have increased its priority and we will make our best to fix it as soon as possible. We will notify you in this thread when there is some update about this issue.

Regards,
Plamen
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Magdalena
Telerik team
answered on 29 Jul 2013, 12:33 PM
Hi,

 We found a temporary workaround for this issue. You can apply the following CSS stylesheet to your code.

html .RadUpload input.ruFileInput {
    display: inline-block;
    width: 700px;
    text-indent: -999px;
}

Keep in mind please, that for IE10 it is necessary to double click the input to open browser window or click the select button. 

I will also remind you that you can use HideFileInput property of RadAsyncUpload which will hide the input field.

I hope this will help you for now.


Regards,
Magdalena
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Aneliya Petkova
Telerik team
answered on 31 Oct 2013, 12:23 PM
Hello,

We want to let you know that the issue with RadAsyncUpload in IE10 and RTL is fixed and will be available in Q3 SP1,expected in the middle of November.

Regards,
Aneliya Petkova
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Martin Roussel
Top achievements
Rank 1
answered on 12 Dec 2013, 07:55 PM
Hi,

I have similar problem with Q3 2012 but in IE11 (the complete control is never visible). I have to set the page in Compatibility mode in order to see it. I added the CSS you provided and still not fixed. Am I forced to update my Telerik version?

TIA
0
Helen
Telerik team
answered on 13 Dec 2013, 12:07 PM
Hi,

You may check our latest demos(2013 Q3 SP1):
http://demos.telerik.com/aspnet-ajax/asyncupload/examples/rtl/defaultcs.aspx
under IE11 and decide whether  to upgrade.

Regards,
Helen
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Martin Roussel
Top achievements
Rank 1
answered on 13 Dec 2013, 12:10 PM
Hi Helen,

I know the control from 2013 Q3 SP1 works good in IE11. The question I ask is: Is the problem Im describing because my current control version (Q3 2012)?

TIA
0
Helen
Telerik team
answered on 13 Dec 2013, 01:02 PM
Hi,

Yes, we had this problem before and fixed it already in our latest SP1.

Regards,
Helen
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Martin Roussel
Top achievements
Rank 1
answered on 14 Dec 2013, 04:02 PM
Hi Helen,

Ive decided to give 2013.3 1114 a try and strangely, I still had to use Compatibility settings in order to view the control (using IE11 on WIn7). Is there something you think I can check? Is that version SP1 or SP1 is another release code?

TIA
0
Helen
Telerik team
answered on 16 Dec 2013, 09:26 AM
Hi,

You may inspect the version with view source of the page. 2013.3.1114.X - is out latest SP1 version.
Do our examples work at your side under IE11?

Regards,
Helen
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Martin Roussel
Top achievements
Rank 1
answered on 16 Dec 2013, 12:41 PM
Hi Helen,

the source code says "2013.3.1114.40" and yes the demo works like a charm with or without Compatibility Mode. I noticed also that RadImageEditor toolbar buttons in the same page dont work when Compatibility Mode is disabled...but RadImageEditor live demos are good.

In case it helps, my IE version is 11.0.9600.16476

Any idea?
0
Helen
Telerik team
answered on 17 Dec 2013, 04:22 PM
Hi,

Could you please send us a sample project, which demonstrates the issue to examine it locally?
Otherwise we couldn't be sure where the issue might be.

Regards,
Helen
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Martin Roussel
Top achievements
Rank 1
answered on 17 Dec 2013, 05:53 PM
Hi Helen,

our license expired couple of days ago and im still waiting approval for renewing the license. Is there a way I can provide my complete code before the renewing is done? In the meantime, could you please attach a sample that works on your side?. Ill try it here

TIA
0
Martin Roussel
Top achievements
Rank 1
answered on 19 Dec 2013, 03:11 PM
UPDATE: I think ive found a reproduceable scenario. It seems to be related to using a RadAjaxManager and RadAsyncUpload. What is weird is the following code is exact COPY/PASTE of this demo (except the two <%@ Register lines that I removed in mine and the CodeFile that ive changed for CodeBehind) which works good in my IE11. I dont use the Register because im using Telerik reference in my Web.Config and I get an error when I use CodeFile (Parser Error Message: The file '/project/DefaultCS.aspx.cs' does not exist.)

The following code should not render the RadAsyncUpload if no Compatibility Mode is used in IE11

If I remove the RadAjaxManager tags (and the line in the OnClientFilesUploaded javascript function), it will display.

Could it be because im using .net 4.0 and live demo is 4.5? I opened a ticket (#770418)


<%@ Page Title="" Language="C#"  AutoEventWireup="true"
    CodeBehind="DefaultCS.aspx.cs" Inherits="ImageEditor_Examples_UploadImage_DefaultCS" %>
  
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<head>
    <title>ASP.NET AsyncUpload Demo - Upload and Edit Image</title>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
    <style type="text/css">
        ._Telerik_IE9 .RadDock.rieDialogs {
            z-index: 20001;
        }
  
        ._Telerik_IE9 .rcbSlide {
            z-index: 20002 !important;
        }
  
        #dwndWrapper {
            height: 85px;
            background-image: url("../../images/upload_100.png");
            background-position: left;
            background-repeat: no-repeat;
            padding: 15px 0 0 100px;
        }
  
        .RadUpload .ruBrowse {
            width: 90px !important;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="QsfSkinManager" runat="server" ShowChooser="true" />
    <telerik:RadFormDecorator ID="QsfFromDecorator" runat="server" DecoratedControls="All" EnableRoundedCorners="false" />
    <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
        <script type="text/javascript">
            function OnClientFilesUploaded(sender, args) {
                $find('<%=RadAjaxManager1.ClientID %>').ajaxRequest();
            }
        </script>
    </telerik:RadScriptBlock>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnablePageHeadUpdate="false">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadImageEditor1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <div id="dwndWrapper">
        <telerik:RadAsyncUpload ID="AsyncUpload1" runat="server"
            OnClientFilesUploaded="OnClientFilesUploaded" OnFileUploaded="AsyncUpload1_FileUploaded"
            MaxFileSize="2097152" AllowedFileExtensions="jpg,png,gif,bmp"
            AutoAddFileInputs="false" Localization-Select="Upload Image" />
        <asp:Label ID="Label1" Text="*Size limit: 2MB" runat="server" Style="font-size: 10px;"></asp:Label>
    </div>
    <telerik:RadImageEditor ID="RadImageEditor1" runat="server" Width="680" Height="450"
        ImageUrl="~/ImageEditor/images/waterpool.jpg" OnImageLoading="RadImageEditor1_ImageLoading">
    </telerik:RadImageEditor>
      
    </form>
</body>
</html>

using System;
using System.Linq;
using System.IO;
using Telerik.Web.UI;
using Telerik.Web.UI.ImageEditor;
 
public partial class ImageEditor_Examples_UploadImage_DefaultCS : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
 
    }
 
    protected void AsyncUpload1_FileUploaded(object sender, FileUploadedEventArgs e)
    {
        //Clear changes and remove uploaded image from Cache
        RadImageEditor1.ResetChanges();
        Context.Cache.Remove(Session.SessionID + "UploadedFile");
        using (Stream stream = e.File.InputStream)
        {
            byte[] imgData = new byte[stream.Length];
            stream.Read(imgData, 0, imgData.Length);
            MemoryStream ms = new MemoryStream();
            ms.Write(imgData, 0, imgData.Length);
 
            Context.Cache.Insert(Session.SessionID + "UploadedFile", ms, null, DateTime.Now.AddMinutes(20), TimeSpan.Zero);
        }
    }
 
    protected void RadImageEditor1_ImageLoading(object sender, ImageEditorLoadingEventArgs args)
    {
        //Handle Uploaded images
        if (!Object.Equals(Context.Cache.Get(Session.SessionID + "UploadedFile"), null))
        {
            using (EditableImage image = new EditableImage((MemoryStream)Context.Cache.Get(Session.SessionID + "UploadedFile")))
            {
                args.Image = image.Clone();
                args.Cancel = true;
            }
        }
    }
}

Web.Config
<?xml version="1.0"?>
<configuration>
  <configSections>
    <sectionGroup name="telerik.web.ui">
      <section name="radScheduler" type="Telerik.Web.UI.RadSchedulerConfigurationSection, Telerik.Web.UI" allowDefinition="MachineToApplication" requirePermission="false"/>
      <section name="radCompression" type="Telerik.Web.UI.RadCompressionConfigurationSection, Telerik.Web.UI, PublicKeyToken=121fae78165ba3d4" allowDefinition="MachineToApplication" requirePermission="false"/>
    </sectionGroup>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
      <section name="LyncImage.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <system.net>
    <defaultProxy enabled="false">
    </defaultProxy>
     
  </system.net>
  <connectionStrings>
     
  </connectionStrings>
  <appSettings>
    <
  </appSettings>
  <system.web>
    <sessionState timeout="525600"/>
    <globalization resourceProviderFactoryType="PL.ResourceProviderPL.SqlResourceProviderFactory" fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8" culture="en-US" uiCulture="en-US"/>
    <webServices>
      <protocols>
        <add name="HttpPost"/>
      </protocols>
    </webServices>
    <customErrors mode="Off"/>
    <!--
          Set compilation debug="true" to insert debugging
          symbols into the compiled page. Because this
          affects performance, set this value to true only
          during development.
    -->
    <compilation debug="true" targetFramework="4.0" batch="false">
      <codeSubDirectories>
      </codeSubDirectories>
      <assemblies>
        <add assembly="System.Data.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
        <add assembly="System.Data.Services.Client, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
        <add assembly="System.Data.Entity.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
        <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      </assemblies>
    </compilation>
    <httpRuntime maxRequestLength="102400"/>
    <httpHandlers>
      <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI"/>
      <add verb="*" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/>
      <add verb="*" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/>
      <add verb="*" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
      <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/>
    </httpHandlers>
    <httpModules>
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression"/>
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI"/>
      <!-- This is for IIS5, IIS6, and IIS7 Classic, and Cassini/VS Web Server-->
    </httpModules>
    <siteMap>
      <providers>
        <add name="ExamplesProvider" type="System.Web.XmlSiteMapProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" siteMapFile="~/Examples.sitemap"/>
      </providers>
    </siteMap>
    <pages clientIDMode="AutoID">
      <controls>
        <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI"/>
      </controls>
    </pages>
    <authentication mode="Windows"/>
  </system.web>
  <system.web.extensions>
    <scripting>
      <webServices>
        <jsonSerialization maxJsonLength="5000000"/>
      </webServices>
    </scripting>
  </system.web.extensions>
  <telerik.web.ui>
    <radScheduler defaultAppointmentProvider="Integrated">
      <appointmentProviders>
        <add name="ReadOnlyXmlSchedulerProvider" type="Telerik.Web.UI.XmlSchedulerProvider" fileName="~/App_Data/Appointments.xml" persistChanges="false"/>
        <add name="ReadOnlySchedulerData" type="Telerik.Web.Examples.Scheduler.MyDbSchedulerProvider" connectionStringName="TelerikConnectionString" persistChanges="false"/>
      </appointmentProviders>
    </radScheduler>
    <radCompression enablePostbackCompression="true">
      <excludeHandlers>
        <add handlerPath="" matchExact="true"/>
      </excludeHandlers>
    </radCompression>
  </telerik.web.ui>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <modules>
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression"/>
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler"/>
      <!-- This is for IIS7+ Integrated mode -->
    </modules>
    <handlers>
      <add name="ChartImage.axd_*" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode"/>
      <add name="Telerik.Web.UI.SpellCheckHandler.axd_*" path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode"/>
      <add name="Telerik.Web.UI.DialogHandler.aspx_*" path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" preCondition="integratedMode"/>
      <add name="Telerik.RadUploadProgressHandler.ashx_*" path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI" preCondition="integratedMode"/>
      <add name="Telerik.Web.UI.WebResource.axd_*" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" preCondition="integratedMode"/>
    </handlers>
    <security>
      <requestFiltering allowDoubleEscaping="True"/>
    </security>
  </system.webServer>
  <system.serviceModel>
    <behaviors>
      <endpointBehaviors>
        <behavior name="ComboBoxWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="TreeViewWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="TagCloudWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="MenuWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="GridWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="ListViewWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="SchedulerWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="ListBoxWcfServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
        <behavior name="XmlHttpPanelWcfBehavior">
          <webHttp/>
        </behavior>
        <behavior name="CustomersWebServiceAspNetAjaxBehavior">
          <enableWebScript/>
        </behavior>
      </endpointBehaviors>
      <serviceBehaviors>
        <behavior name="XmlHttpPanelWcfBehavior">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
    <services>
      <service name="ComboBoxWcfService">
        <endpoint address="" behaviorConfiguration="ComboBoxWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="ComboBoxWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="ComboBoxWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="ComboBoxWcfService" />-->
      </service>
      <service name="TreeViewWcfService">
        <endpoint address="" behaviorConfiguration="TreeViewWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="TreeViewWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="TreeViewWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="TreeViewWcfService" />-->
      </service>
      <service name="TagCloudWcfService">
        <endpoint address="" behaviorConfiguration="TagCloudWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="TagCloudWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="TagCloudWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="TagCloudWcfService" />-->
      </service>
      <service name="MenuWcfService">
        <endpoint address="" behaviorConfiguration="MenuWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="MenuWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="MenuWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="MenuWcfService" />-->
      </service>
      <service name="GridWcfService">
        <endpoint address="" behaviorConfiguration="GridWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="GridWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="GridWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="GridWcfService" />-->
      </service>
      <service name="GridMasterDetailsService">
        <endpoint address="" behaviorConfiguration="GridWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="GridMasterDetailsService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="GridWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="GridMasterDetailsService" />-->
      </service>
      <service name="ListViewWcfService">
        <endpoint address="" behaviorConfiguration="ListViewWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="ListViewWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="ListViewWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="ListViewWcfService" />-->
      </service>
      <service name="SchedulerWcfService">
        <endpoint address="" behaviorConfiguration="SchedulerWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="SchedulerWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="SchedulerWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="SchedulerWcfService" />-->
      </service>
      <service name="ListBoxWcfService">
        <endpoint address="" behaviorConfiguration="ListBoxWcfServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="ListBoxWcfService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="ListBoxWcfServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="ListBoxWcfService" />-->
      </service>
      <service behaviorConfiguration="XmlHttpPanelWcfBehavior" name="XmlHttpPanelWcfService">
        <endpoint address="" binding="webHttpBinding" contract="IXmlHttpPanelWcfService" behaviorConfiguration="XmlHttpPanelWcfBehavior"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" binding="webHttpBinding" bindingConfiguration="secureBinding"
              contract="IXmlHttpPanelWcfService" behaviorConfiguration="XmlHttpPanelWcfBehavior"/>-->
      </service>
      <service name="CustomersWebService">
        <endpoint address="" behaviorConfiguration="CustomersWebServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="CustomersWebService"/>
        <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
        <!--<endpoint address="" behaviorConfiguration="CustomersWebServiceAspNetAjaxBehavior"
               binding="webHttpBinding" bindingConfiguration="secureBinding" contract="CustomersWebService" />-->
      </service>
    </services>
    <bindings>
      <basicHttpBinding>
        <binding name="basicHttpEndpointBasic" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="524288" maxBufferPoolSize="524288" maxReceivedMessageSize="524288" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
          <readerQuotas maxDepth="32" maxStringContentLength="524288" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
          <security mode="None">
            <transport realm=""/>
          </security>
        </binding>
      </basicHttpBinding>
      <!-- Uncomment the below setting to enable WCF services if you are deploying the site under HTTPS -->
      <!--<webHttpBinding>
        <binding name="secureBinding">
          <security mode="Transport" />
        </binding>
      </webHttpBinding>-->
      <customBinding>
        <binding name="webHttpBinding">
          <textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16" messageVersion="Soap12" writeEncoding="utf-8">
            <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
          </textMessageEncoding>
        </binding>
      </customBinding>
    </bindings>
    <client>
      <endpoint address="http://api.hisoftware.com/Service.svc" binding="basicHttpBinding" bindingConfiguration="basicHttpEndpointBasic" contract="BasicServiceReference.Basic" name="basicHttpEndpointBasic"/>
      <endpoint binding="customBinding" bindingConfiguration="webHttpBinding" contract="BasicServiceReference.Basic" name="webHttpBinding"/>
    </client>
  </system.serviceModel>
  <applicationSettings>
    <LyncImage.Properties.Settings>
       
    </LyncImage.Properties.Settings>
  </applicationSettings>
</configuration>


TIA
0
Boyan Dimitrov
Telerik team
answered on 20 Dec 2013, 12:59 PM
Hello,

in order to avoid any further misunderstandings in our communication I would ask you to continue our communication in your support thread #770418.

I would like to clarify that I have tested the demo source code without register declarative and it works as expected even with RadAjaxManager on the page. 

Regards,
Boyan Dimitrov
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
AsyncUpload
Asked by
ido nahmias
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Magdalena
Telerik team
Aneliya Petkova
Telerik team
Martin Roussel
Top achievements
Rank 1
Helen
Telerik team
Boyan Dimitrov
Telerik team
Share this question
or