Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
109 views
Hi there ,
I have a page with client side code only.
On a button click (using javascript) I want to check if inputs are valid , and if so , execute the javascript (in my case , changing tab on form)
How can I do it?

<asp:TextBox ID="tbFirstName" runat="server" Font-Size="1em" style="width: 150px;" ></asp:TextBox>
 
<telerik:RadInputManager ID="RadInputManager1" runat="server" Skin="Office2007" >
     <telerik:TextBoxSetting BehaviorID="TextBoxBehavior1" EmptyMessage=""  Validation-IsRequired="true" >
         <TargetControls>
             <telerik:TargetInput ControlID="tbFirstName" />
         </TargetControls>
         <ClientEvents OnValidating="onValidating" />
     </telerik:TextBoxSetting>       
</telerik:RadInputManager>

And this is the javascript I want to run in case the input is valid (while clicking on button)

function GeneralContinue() {
    tabStrip = $find('RadTabStrip1');
    tabStrip.findTabByValue('General').select();
}
Shinu
Top achievements
Rank 2
 answered on 16 Aug 2013
1 answer
72 views
I watched the video of Visual Style Builder and followed all the instructions but the styles are not working in my project. I tested a simple button control and when I mouseover the button changes to a color but when it's just sitting there the button has a white background.  It doesn't use the style I created with VSB.  I am using IE10. I also tested it with Chrome and Firefox with the same results.
Stamo Gochev
Telerik team
 answered on 16 Aug 2013
0 answers
91 views
Hi,
how to Maintain the state(userid) of checked records  during paging in rad grid?
Below is my code for reference
<telerik:RadGrid ID="RadGrid1" runat="server" AllowMultiRowSelection="True" AllowPaging="True"
          PageSize="5" AllowSorting="True"
          OnNeedDataSource="RadGrid1_NeedDataSource" CellSpacing="0"
          GridLines="None" ShowGroupPanel="True">
          <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true"></PagerStyle>
          <ClientSettings Selecting-AllowRowSelect="true" AllowDragToGroup="True">
              <Selecting AllowRowSelect="True"></Selecting>
          </ClientSettings>
          <MasterTableView DataKeyNames="UserId">
              <Columns>
                  <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" />
              </Columns>
              <PagerStyle AlwaysVisible="True"></PagerStyle>
          </MasterTableView>
      </telerik:RadGrid>
      <br />
      <asp:Button ID="Button1" runat="server" Text="Save" OnClick="Button1_Click" Width="130px"
          Height="25px" ValidationGroup="val" />
      <br />
and
public partial class GroupUserCreation : System.Web.UI.Page
{
    Globas obj = new Globas();
    CheckBox chkbox = new CheckBox();
    string GroupId="";
  
 
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
 
            DataTable dt1 = obj.GroupDetails();
            cmbgroupname.DataSource = dt1;
            cmbgroupname.DataTextField = "GroupName";
            cmbgroupname.DataValueField = "GroupId";
            cmbgroupname.DataBind();
        }
      
        
    }
 
    protected void Button1_Click(object sender, EventArgs e)
    {
         
        try
        {
            GroupId = cmbgroupname.SelectedItem.Value.ToString();
            foreach (GridItem item in RadGrid1.MasterTableView.Items)
            {
 
                GridDataItem dataitem = (GridDataItem)item;
                TableCell cell = dataitem["ClientSelectColumn"];
                CheckBox checkBox = (CheckBox)cell.Controls[0];
                if (checkBox.Checked)
                {
                    int userid = Convert.ToInt32(dataitem.GetDataKeyValue("UserId").ToString());
                    if (GroupId != null)
                    {
                        obj.InsertGroupUserCreation(Convert.ToInt32(GroupId), userid);
                    }
                }
 
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }
     
    protected void RadGrid1_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
    {
        DataTable dt = obj.UserDetails();
        RadGrid1.DataSource = dt;
      
    }
 
 
     
}

Thanks.
Swapnil
Top achievements
Rank 1
 asked on 16 Aug 2013
1 answer
77 views
If I add the event to the RadDatePicker control then obviously it works

<telerik:RadDatePicker runat="server" ID="MyRadDatePicker" ClientEvents-OnDateSelected="clientEvent" />


But My question is how do I add the event "ClientEvents-OnDateSelected" from the code behind of my master page when the radDatePicker is in a custom control and that control is on the master page?

I tried this but it wont work?

protected void Page_Load(object sender, EventArgs e)
{
UC1MyCustomControl.FindControl("MyRadDatePicker").ClientEvents-OnDateSelected="clientEvent";
 
}
Shinu
Top achievements
Rank 2
 answered on 16 Aug 2013
1 answer
65 views
Hi, I have a problem with the edit mode in the grid, when I click the edit button, I get only the Update and Cancel link, but the editable fields are not showing... Is there any property to show/hide the form view in edit or insert mode...? Even if I set the editMode to "PopUp", the popup window only shows the Update and Cancel buttons, but the fields don't... What can I do?

Thanks...
Sami
Princy
Top achievements
Rank 2
 answered on 16 Aug 2013
2 answers
92 views
We have a simple rotator with four images.  The control clips the sides of the left and right images (see attached graphic).  Is there some way to bunch the images up closer to avoid the clipping? 

Failing that, is there some formula to know how to size either the images or the rotator to ensure that no clipping will occur, to prevent trial and error testing?  For example, if the rotator is to be 900 pixels how wide can the images be without clipping?

<div style="height: 450px; background-color: #f0f3f6;">
    <asp:Image ImageUrl="~/images/carousel_rt.gif" ID="img_right" AlternateText="right"
        runat="server" Style="cursor: pointer; float: right; margin-top: 180px;" />
    <asp:Image ImageUrl="~/images/carousel_left.gif" ID="img_left" AlternateText="left"
        runat="server" Style="cursor: pointer; float: left; margin-top: 180px;" />
    <telerik:RadRotator ID="radCarousel1" runat="server" Width="900px" ItemWidth="575px"
        Height="430px" ItemHeight="255px" ScrollDuration="1000" FrameDuration="3000"
        RotatorType="CarouselButtons" Style="margin: 0px auto 0px auto;">
        <Items>
            <telerik:RadRotatorItem>
                <ItemTemplate>
                    <img src="images/carouselicount.jpg" />
                </ItemTemplate>
            </telerik:RadRotatorItem>
            <telerik:RadRotatorItem>
                <ItemTemplate>
                    <img src="images/carouselplatform.jpg" />
                </ItemTemplate>
            </telerik:RadRotatorItem>
            <telerik:RadRotatorItem>
                <ItemTemplate>
                    <img src="images/carouselpeople.jpg" />
                </ItemTemplate>
            </telerik:RadRotatorItem>
            <telerik:RadRotatorItem>
                <ItemTemplate>
                    <img src="images/carouselprograms.jpg" />
                </ItemTemplate>
            </telerik:RadRotatorItem>
        </Items>
        <ControlButtons LeftButtonID="img_left" RightButtonID="img_right" />
    </telerik:RadRotator>
</div>
Lisa
Top achievements
Rank 1
 answered on 15 Aug 2013
2 answers
89 views
When a new record is added in the demo link below, the dropdown does not always initialize at index 0.  It will remember the index of a previous selected row's dropdown.  How can it be made to always initialize at 0 when a new record is added? 

http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/batchediting/defaultcs.aspx
adam
Top achievements
Rank 1
 answered on 15 Aug 2013
1 answer
412 views

Hi,
I need to display customized tooltips on individual sectors of a pie chart. How can I do it in the code behind? Because I also need to customize the background color of the pie chart, I have to dynamically generate pie series in the code behind.
My code snippet is attached.

Thanks,

Rong

    Private Sub LoadAppropriationForAllPrograms()
        lblChrtHeader.Text = "Appropriation by Program"
        Dim budgetFund As New BudgetBookBAL.BudgetBook
        Dim fundDT As New DataTable
        Dim seriesColor As New BudgetBookBAL.StaticColors
        chrtProgram.PlotArea.Series.Clear()
       

        fundDT = budgetFund.GetAppropriationForAllPrograms()

        Dim chartData As New Telerik.Web.UI.PieSeries
        chartData.StartAngle = "90"
        chartData.LabelsAppearance.Position = Telerik.Web.UI.HtmlChart.PieLabelsPosition.Circle
        chartData.LabelsAppearance.DataFormatString = "${0}M"

       
        Dim total As Decimal = 0D
        For Each row As DataRow In fundDT.Rows
            total = CDec(row("TOT_BUDGET")) + total
        Next

        Dim index As Integer = 0
        For Each row As DataRow In fundDT.Rows
            Dim chartSeries As New Telerik.Web.UI.SeriesItem

            Dim pct As Decimal = 0D
            If total > 0 Then
                pct = CDec(row("TOT_BUDGET")) / total * 100
            End If

            chartSeries.BackgroundColor = seriesColor.GetColor(index)
            Dim desc As String = row("PROG_NAME").ToString + " - $" + CDec(row("TOT_BUDGET")).ToString() + "M (" + pct.ToString("F1") + "%)"

            chartSeries.YValue = CDec(row("TOT_BUDGET"))
            chartSeries.Name = desc
            'chartSeries.TooltipValue = desc
            chartData.Items.Add(chartSeries)
            index += 1
        Next
        chrtProgram.Legend.Appearance.Position = Telerik.Web.UI.HtmlChart.ChartLegendPosition.Right
 
        chrtProgram.PlotArea.Series.Add(chartData)
        chrtProgram.DataBind()
    End Sub

Danail Vasilev
Telerik team
 answered on 15 Aug 2013
1 answer
99 views
Hello,

I was wondering if it is possible to handle quotation marks in the Editor so that they work according to standards in different countries. 

In Switzerland and Germany the quotation marks should be like this: â€ž …“ but in Sweden and UK it should be like this: "...".

Is there any way of handling this without adding a keydown listener that does this manually?

Best regards

Ianko
Telerik team
 answered on 15 Aug 2013
1 answer
426 views
OK I tried to update everything at once... probably not the smartest thing in the world, but that's what we have this community for right? ;-)

Anyway, here we go a lot to explain.

I updated to the latest Telerik.Web.UI.dll and Skins.dll 2013.2.717.40 as of right this second. I also decided it would be a great idea to go ahead and update the OpenAccessORM as well to the latest version.. 2013.2.702.1....

So of course things are going to blow up, I expected that... what I didn't expect was this:

Server Error in '/ADotNET' Application.

Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.IO.FileLoadException: Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Assembly Load Trace: The following information can be helpful to determine why the assembly 'Telerik.Web.UI' could not be loaded.

=== Pre-bind state information ===
LOG: User = ciisuser
LOG: DisplayName = Telerik.Web.UI
 (Partial)
WRN: Partial binding information was supplied for an assembly:
WRN: Assembly Name: Telerik.Web.UI | Domain ID: 4
WRN: A partial bind occurs when only part of the assembly display name is provided.
WRN: This might result in the binder loading an incorrect assembly.
WRN: It is recommended to provide a fully specified textual identity for the assembly,
WRN: that consists of the simple name, version, culture, and public key token.
WRN: See whitepaper http://go.microsoft.com/fwlink/?LinkId=109270 for more information and common solutions to this issue.
LOG: Appbase = file:///E:/MyDoeProjects/ADotNET/
LOG: Initial PrivatePath = E:\MyDoeProjects\ADotNET\bin Calling assembly : (Unknown). === LOG: This bind starts in default load context. LOG: Using application configuration file: E:\MyDoeProjects\ADotNET\web.config LOG: Using host configuration file: C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet.config LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config. LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind). LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/Temporary ASP.NET Files/adotnet/6cbcc12d/eaa54d1e/Telerik.Web.UI.DLL. LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/Temporary ASP.NET Files/adotnet/6cbcc12d/eaa54d1e/Telerik.Web.UI/Telerik.Web.UI.DLL. LOG: Attempting download of new URL file:///E:/MyDoeProjects/ADotNET/AppaloosaDotNET/bin/Telerik.Web.UI.DLL. LOG: Using application configuration file: E:\MyDoeProjects\ADotNET\web.config LOG: Using host configuration file: C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet.config LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config. LOG: Post-policy reference: Telerik.Web.UI, Version=2013.2.717.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4 ERR: Failed to complete setup of assembly (hr = 0x80070057). Probing terminated.

Stack Trace:

[FileLoadException: Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))]

[FileLoadException: Could not load file or assembly 'Telerik.Web.UI, Version=2013.2.717.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))]
   System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks) +0
   System.Reflection.RuntimeAssembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks) +39
   System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection, Boolean suppressSecurityChecks) +132
   System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +144
   System.Reflection.Assembly.Load(String assemblyString) +28
   System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +46

[ConfigurationErrorsException: Could not load file or assembly 'Telerik.Web.UI, Version=2013.2.717.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))]
   System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +618
   System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +209
   System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +130
   System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +178
   System.Web.Compilation.BuildManager.GetPreStartInitMethodsFromReferencedAssemblies() +94
   System.Web.Compilation.BuildManager.CallPreStartInitMethods() +332
   System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +677

[HttpException (0x80004005): Could not load file or assembly 'Telerik.Web.UI, Version=2013.2.717.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +9104200
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +97
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +256


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.276


I think I can safely say this is the first time I've ever seen this error.

Now the Telerik.Web.UI is not in the GAC. So I added the reference by browsing to the install directory.

Another fear of mine is that more than likely the page I'm trying to call is referencing custom .dll files that we wrote using an older version of OpenAccess. They are all class files, so I don't think I can use the awesome PublisherPolicy.cfg on anything that is just a class assembly.

So I will probably have to go back through all of those and update them individually which is a whole bunch of them... so if anyone does know of a better way to update OpenAccess references to newer versions on class assemblies.... please do tell :D

Anyway, back to the original issue above, I have double checked the bin file of my project and the Telerik.Web.UI.dll, etc.. files are there.
To make it worse, we have an Assemblies folder that we reference for all of the custom individual class assemblies that we write. If I move the Telerik.Web.UI.dll files and it's crew over to that file I then get this error instead.

Server Error in '/ADotNET' Application.

Configuration Error

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: Could not load type 'Telerik.Web.UI.RadSessionPageStateCompression'.

Source Error:

Line 6:    <browser refID="Default">
Line 7:      <controlAdapters>
Line 8:        <adapter controlType="System.Web.UI.Page" adapterType="Telerik.Web.UI.RadSessionPageStateCompression" />
Line 9:      </controlAdapters>    
Line 10:   </browser>   

Source File: E:\MyDoeProjects\ADotNET\App_Browsers\BrowserFile.browser    Line: 8


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.276


Yes that's the browser file saying that it cannot find the Telerik.Web.UI.RadSessionPageStateCompression... I'm guessing that's just because it couldn't load the file from the reference folder we have... but even if that was the case shouldn't have copied the Telerik.Web.UI file from the non GAC reference that I specified???

Anyway lots of confusion and frustration going on...

Since I know you are going to want to see the web.config here it is.

<?xml version="1.0"?>
<configuration
<system.web>
    <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.
        -->
    <!--
      Set compilation debug="true" to insert debugging
      symbols into the compiled page. Because this
      affects performance, set this value to true only
      during development.
    -->
<browserCaps>
      <case>
        RequiresControlStateInSession=true
      </case>
    </browserCaps>  
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="Microsoft.ReportViewer.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Web.Entity, 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="Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
        <add assembly="Telerik.Reporting, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" />
        <add assembly="System.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
      </assemblies>
      <buildProviders>
        <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
      </buildProviders>
    </compilation>
    <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
    <!--
      The <authentication> section enables configuration
      of the security authentication mode used by
      ASP.NET to identify an incoming user.
    -->
    <authentication mode="Windows" />
    <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.
 
        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
    <!--<pages>-->
      <controls>
        <add tagPrefix="tlk" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2013.2.717.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
        <add tagPrefix="tlkRpt" assembly="Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" namespace="Telerik.ReportViewer.WebForms" />       
        <!--<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />-->
        <!--<add tagPrefix="tlkRpt" assembly="Telerik.ReportViewer.WebForms, Version=5.1.11.713, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" namespace="Telerik.ReportViewer.WebForms" />-->
        <!--<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />-->
      </controls>
    </pages>
    <!--
      The <customErrors> section enables configuration
      of what to do if/when an unhandled error occurs
      during the execution of a request. Specifically,
      it enables developers to configure html error pages
      to be displayed in place of a error stack trace.
 
    <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
      <error statusCode="403" redirect="NoAccess.htm" />
      <error statusCode="404" redirect="FileNotFound.htm" />
    </customErrors>
    -->
    <httpHandlers>
      <add path="elmah.axd" verb="POST,GET,HEAD" type="Elmah.ErrorLogPageFactory, Elmah" />
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
      <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" />
      <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
      <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
      <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
      <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
      <add type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" path="Telerik.ReportViewer.axd" verb="*" validate="true" />
    </httpHandlers>
    <httpModules>
      <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression" />
    </httpModules>
  </system.web>
  <!--
        The system.webServer section is required for running ASP.NET AJAX under Internet
        Information Services 7.0.  It is not necessary for previous version of IIS.
    -->
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true">
      <remove name="RadUploadModule" />
      <remove name="RadCompression" />
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode" />     
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode" />
      <!--<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression" />-->
    </modules>
    <handlers>
      <remove name="ChartImage_axd" />
      <remove name="Telerik_Web_UI_SpellCheckHandler_axd" />
      <remove name="Telerik_Web_UI_DialogHandler_aspx" />
      <remove name="Telerik_RadUploadProgressHandler_ashx" />
      <remove name="Telerik_Web_UI_WebResource_axd" />
      <remove name="Telerik.ReportViewer.axd_*" />
      <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode" />
      <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik.ReportViewer.axd_*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" path="Telerik.ReportViewer.axd" verb="*" preCondition="integratedMode" />
    </handlers>   
  </system.webServer>
  <elmah>
    <errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
    <security allowRemoteAccess="0" />
  </elmah>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Telerik.OpenAccess.Web"
          publicKeyToken="7ce17eeaf1d59342"
          culture="neutral"/>
        <bindingRedirect oldVersion="2008.0.0.0-2013.2.702.1"
                         newVersion="2013.2.702.1"/>
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Telerik.OpenAccess.Runtime"
          publicKeyToken="7ce17eeaf1d59342"
          culture="neutral"/>
        <bindingRedirect oldVersion="2008.0.0.0-2013.2.702.1"
                         newVersion="2013.2.702.1"/>
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Telerik.OpenAccess.35.Extensions"
          publicKeyToken="7ce17eeaf1d59342"
          culture="neutral"/>
        <bindingRedirect oldVersion="2008.0.0.0-2013.2.702.1"
                         newVersion="2013.2.702.1"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

Hopefully it's just something that I overlooked and an easy fix.... but I'm out of ideas.... so any help would be much appreciated!

Thanks,

Dustin
Dyanko
Telerik team
 answered on 15 Aug 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?