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

Telerik TextBox and ComboBox, throwing error, when on same page intersoft webgrid

9 Answers 75 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Tomislav
Top achievements
Rank 1
Tomislav asked on 13 Jan 2014, 12:45 PM

Hi,


there is and error in scriptresource.axd, at both controls.

Used WebGrid, was WebGrid 8 and latest of telerik controls.







Default.aspx



<%@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<%@ Register Assembly="ISNet.WebUI.WebGrid" Namespace="ISNet.WebUI.WebGrid" TagPrefix="ISWebGrid" %>
 
<!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>
</head>
<body>
     
     
    <form id="form1" runat="server">
    <div>
        <%--NE RADI PROBLEME--%>
        <asp:ScriptManager ID="ScriptManager1" runat="server" ></asp:ScriptManager>
 
        <telerik:RadDropDownList ID="RadDropDownList1" runat="server">
            <Items>
                <telerik:DropDownListItem Value="0" Text="AAA" />
                <telerik:DropDownListItem Value="1" Text="BBB" />
            </Items>
        </telerik:RadDropDownList>
        <br />
        <%--RADI PROBLEME--%>
        <%--<telerik:RadComboBox ID="RadComboBox1" runat="server" >
            <Items>
                <telerik:RadComboBoxItem Text="AAA" Value="0" />
                <telerik:RadComboBoxItem Text="BBB" Value="1" />
            </Items>
        </telerik:RadComboBox>--%>
        <br />
        <%--RADI PROBLEME--%>
        <%--<telerik:RadDateInput ID="RadDateInput1" runat="server" ></telerik:RadDateInput>--%>
        <br />
        <telerik:RadTextBox ID="RadTextBox1" runat="server"></telerik:RadTextBox>
             
        <br />
        <telerik:RadMenu ID="RadMenu1" runat="server">
            <Items>
                <telerik:RadMenuItem Text="AAA" NavigateUrl="#">
                </telerik:RadMenuItem>
                <telerik:RadMenuItem Text="BBB" NavigateUrl="#">
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenu>
 
        <br />
        <br />
        <br />
        <ISWebGrid:WebGrid ID="WebGrid1" runat="server" Height="250px" UseDefaultStyle="true" Width="500px"></ISWebGrid:WebGrid>
 
 
    </div>
    </form>
</body>
</html>




Web.config



<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  -->
<configuration>
  <connectionStrings>
    <add name="WebSchedulerDataConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\WebSchedulerData.mdb;Persist Security Info=True" providerName="System.Data.OleDb"/>
  </connectionStrings>
  <appSettings>
    <!-- Intersoft Control Resources-->
    <add key="ISNet.WebUI.ISRes_Registered" value="true"/>
    <add key="ISNet.WebUI.WebCombo.v6_0_7200.RenderingMode" value="HTML5"/>
    <add key="ISNet.WebUI.WebDesktop.V4_0_7200.RenderingMode" value="HTML5"/>
    <add key="ISNet.WebUI.WebEssentials.v3_0_1000.RenderingMode" value="HTML5"/>
    <add key="ISNet.WebUI.WebGrid.v8_0_7200.RenderingMode" value="HTML5"/>
    <add key="ISNet.WebUI.WebInput.V4_0_7200.RenderingMode" value="HTML5"/>
    <add key="ISNet.WebUI.WebTextEditor.v2_0_1500.RenderingMode" value="HTML5"/>
    <add key="ISNet.WebUI.WebScheduler.v4_0_1000.RenderingMode" value="HTML5"/>
    <add key="ISNet.WebUI.WebTreeView.v1_0_1500.RenderingMode" value="HTML5"/>
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="ISNet.ActiveReports.Exporting, Version=5.0.7200.1, Culture=neutral, PublicKeyToken=B1F2A8511635667A"/>
        <add assembly="ISNet, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=B1F2A8511635667A"/>
        <add assembly="ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=B1F2A8511635667A"/>
        <add assembly="ISNet.WebUI.ISDataSource, Version=1.0.1500.1, Culture=neutral, PublicKeyToken=C4184EF0D326354B"/>
        <add assembly="ISNet.WebUI.Silverlight, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=B1F2A8511635667A"/>
        <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.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
      </assemblies>
    </compilation>
    <httpHandlers>
      <!-- Intersoft Control Resources-->
      <add path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" validate="true"/>
      <!-- Intersoft WebGrid Chart-->
      <add path="ISChart.axd" verb="GET" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" validate="true"/>
      <!-- Intersoft WebFileUploader-->
      <add path="WebFileUploaderHttpHandler.axd" verb="GET" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor"/>
      <!-- Intersoft WebScheduler-->
      <add path="ISScheduler.axd" verb="GET" type="ISNet.WebUI.WebScheduler.WebSchedulerRequestHandler, ISNet.WebUI.WebScheduler" validate="true"/>
      <!-- Intersoft WebAqua-->
      <add path="ISCoverFlow.axd" verb="GET" type="ISNet.WebUI.Silverlight.WebAqua.WebCoverFlowRequestHandler, ISNet.WebUI.Silverlight.WebAqua" validate="true"/>
    </httpHandlers>
    <httpModules>
      <!-- Intersoft WebFileUploader-->
      <add name="WebFileUploaderHttpModule" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor"/>
    </httpModules>
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
  </system.web>
  <system.webServer>
    <handlers>
      <add name="ISCoverFlow.axd_GET" path="ISCoverFlow.axd" verb="GET" type="ISNet.WebUI.Silverlight.WebAqua.WebCoverFlowRequestHandler, ISNet.WebUI.Silverlight.WebAqua" preCondition="integratedMode"/>
      <add name="ISChart.axd_GET, POST" path="ISChart.axd" verb="GET, POST" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" preCondition="integratedMode"/>
      <add name="ISRes.axd_GET" path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" preCondition="integratedMode"/>
      <add name="WebFileUploaderHttpHandler.axd_GET" path="WebFileUploaderHttpHandler.axd" verb="GET" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" preCondition="integratedMode"/>
      <add name="ISScheduler.axd_GET" path="ISScheduler.axd" verb="GET" type="ISNet.WebUI.WebScheduler.WebSchedulerRequestHandler, ISNet.WebUI.WebScheduler" preCondition="integratedMode"/>
    </handlers>
    <modules>
      <add name="WebFileUploaderHttpModule_GET" preCondition="managedHandler" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor"/>
    </modules>
    <validation validateIntegratedModeConfiguration="false"/>
  </system.webServer>
</configuration>








9 Answers, 1 is accepted

Sort by
0
Hristo Valyavicharski
Telerik team
answered on 16 Jan 2014, 09:41 AM
Hi Tomislav,

Can you verify if these issues exist, when you remove the Intersoft controls. At my side it is working correctly on IE11 without them.

Regards,
Hristo Valyavicharski
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
Tomislav
Top achievements
Rank 1
answered on 16 Jan 2014, 09:49 AM

Hi,


point is, that i would like to use both type of controls on same page if it is possible.

0
Hristo Valyavicharski
Telerik team
answered on 16 Jan 2014, 02:31 PM
We are not familiar with these controls. Please send a sample project which reproduces the described error, so we can make further investigation.

Thanks.

Regards,
Hristo Valyavicharski
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
Tomislav
Top achievements
Rank 1
answered on 16 Jan 2014, 04:14 PM

Hi,


since i cant attach files, other that pictures, to forum, i will post rest of code files.





Default.aspx.vb



Imports System

Imports System.Collections.Generic

Imports System.Linq

Imports System.Web

Imports System.Web.UI

Imports System.Web.UI.WebControls

Partial Public Class _Default

Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

End Sub

End Class




In attached picture, you can see what .dll are in bin.



You can download latest intersoft package, in trial mode.

And test it with telerik controls.



0
Hristo Valyavicharski
Telerik team
answered on 21 Jan 2014, 03:02 PM
Hi Tomislav,

I have downloaded a trial version of Intersoft controls and tested it with your code. Everything seems to be working correctly as you can see from this video. To investigate the issue further we will need an isolated sample that reproduces the problem. You may upload it to DropBox, SkyDrive, Google Drive, Github and paste the link here.

Please be sure that you pointed:
  • Version of Telerik Controls
  • Version of Intersoft Controls
  • Browser Version
  • Steps to reproduce

Thanks

Regards,
Hristo Valyavicharski
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
Tomislav
Top achievements
Rank 1
answered on 21 Jan 2014, 04:02 PM

Hi,


first your aspx file, isnt same as mine, since you included <customEditors>, with custom js files.











Browser is IE11 - 11.0.2







Telerik - 2013.3.1114.40







Intersoft - 8.0.7200.256







Steps, are simple create simple website, in default.aspx drop webgrid and telerik textbox, then click inside textbox.







http://www.screencast.com/t/W2SjLVZf



http://www.screencast.com/t/Opz8EiFzmZjf

0
Hristo Valyavicharski
Telerik team
answered on 22 Jan 2014, 03:07 PM
Hi Tomislav,

I have tested your sample and it worked without issues. Please watch the video from the testing http://screencast.com/t/aqVe1ERtRYX One clarification your sample uses ver. 2013.3.1015.40, but it is also working with the 2013.3.1114.40. Try to clear your browser's cache.

Regards,
Hristo Valyavicharski
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
Tomislav
Top achievements
Rank 1
answered on 04 Mar 2014, 12:29 PM
Hi, i have tested it on multiple machines and when i emulate document mode 8, it works fine, but when i use latest docment mode that comes with IE11, it crashes.
0
Hristo Valyavicharski
Telerik team
answered on 07 Mar 2014, 08:20 AM
Hi Tomislav,

Try to comment the itersoft grid. If the error disappears contact the intersoft support team. 

Regards,
Hristo Valyavicharski
Telerik

DevCraft Q1'14 is here! Join the free online conference to see how this release solves your top-5 .NET challenges. Reserve your seat now!

Tags
ComboBox
Asked by
Tomislav
Top achievements
Rank 1
Answers by
Hristo Valyavicharski
Telerik team
Tomislav
Top achievements
Rank 1
Share this question
or