I am using Ultimate 2010 Vol 3 pakage but when i started using webgrid controls on my Web application and browsing on internet explorer it gives javascript error like "Microsoft JScript runtime error" etc can anyone help me how to resolve this as i am not able to develop my application without resolving this problem.
Hi tegadmin,
This error could be happening from anything. At the least, attach a screenshot of a stack trace so we can see where it is happening. A better option would be to attach a small website here reproducing your issue so that we can debug it and see if it is an issue in our controls or your application.
regards,
David Young
Hi David,
I have already attached a screenshot as well as pasted code when i raised this case kindly check and revert me back, if that is not enough than let me know what more you want from me so that i can provide you accordingly.
Subrat
Hi Subrat,
Perhaps these are attached to a support case in our system, however I do not work with those. I am talking about this forum post. I double-checked and do not see a screenshot or sample code in your original post. Could you attach these articles here so that I may look at them?
thanks,Dave
Hello tegadmin, Go Infragistics website -> My IG -> My keys & Downloads.Login with your username and password. Click on NetAdvantage and select Product Name, scroll down and select Service Release. Currently latest service release is 10.3.20103.2120
Hi Dave,
Whatever was in my account i downloaded, but i have no idea whether it is the latest version, can you please guide me to get the latest version.
If you're using IE 9, you'll need to make sure you're running the latest Service Release for 10.3 for it to be fully supported. Otherwise you can have problems.
Hi there there is typo error IE(, it is IE9
Java script errot comes the moment i browse it using IE(
I have already attched a screen shot for the same and please find the the simple code... in my view it is not suuporting IE9 there is nothing in the code but still please see the code as below:
using
System;
System.Collections.Generic;
System.Linq;
System.Web;
System.Web.UI;
System.Web.UI.WebControls;
System.Data;
public
Page
{
e)
(!IsPostBack)
table = GetTable();
//WebDataGrid1.DataSource = table;
//WebDataGrid1.DataBind();
}
GetTable()
//
// Here we create a DataTable with four columns.
();
table.Columns.Add(
));
// Here we add five DataRows.
table.Rows.Add(25,
.Now);
table.Rows.Add(50,
table.Rows.Add(10,
table.Rows.Add(21,
table.Rows.Add(100,
table;
<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="test_grid.aspx.cs" Inherits="test_grid" %>
@ Register Assembly="Infragistics2.Web.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
Namespace="Infragistics.Web.UI.GridControls" TagPrefix="ig" %>
@ Register assembly="Infragistics2.Web.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI" tagprefix="ig" %>
@ Register assembly="Infragistics2.WebUI.WebScheduleDataProvider.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.Data" tagprefix="ig_scheduledata" %>
<!
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>
</
head>
body>
<form id="form1" runat="server">
<div>
<ig:WebDataGrid ID="WebDataGrid1" runat="server" Height="100%" Width="100%"
AutoGenerateColumns="False" DataSourceID="SqlDataSource1" >
<Columns>
<ig:BoundDataField DataFieldName="Week_of" Key="Week_of">
<Header Text="Week_of" />
</ig:BoundDataField>
<ig:BoundDataField DataFieldName="Year" Key="Year">
<Header Text="Year" />
<ig:BoundDataField DataFieldName="GA_TV_Spend" Key="GA_TV_Spend">
<Header Text="GA_TV_Spend" />
<ig:BoundDataField DataFieldName="GA_Cable_Spend" Key="GA_Cable_Spend">
<Header Text="GA_Cable_Spend" />
<ig:BoundDataField DataFieldName="GA_Network_Spend" Key="GA_Network_Spend">
<Header Text="GA_Network_Spend" />
</Columns>
<Behaviors>
<ig:EditingCore>
<ig:CellEditing>
</ig:CellEditing>
<ig:RowAdding>
</ig:RowAdding>
<ig:RowDeleting />
<ig:RowEditingTemplate>
</ig:RowEditingTemplate>
</Behaviors>
</ig:EditingCore>
<ig:Selection CellClickAction="Row" RowSelectType="Single">
</ig:Selection>
<ig:RowSelectors>
</ig:RowSelectors>
<ig:Sorting>
</ig:Sorting>
<ig:Filtering>
</ig:Filtering>
</ig:WebDataGrid>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:Weightwatcher2008ConnectionString %>"
SelectCommand="SELECT [Week of] AS Week_of, [Year], [GA TV Spend] AS GA_TV_Spend, [GA Cable Spend] AS GA_Cable_Spend, [GA Network Spend] AS GA_Network_Spend FROM [WWM]">
</asp:SqlDataSource>
</div>
</form>
html>